verify_email
Validate email addresses using AtData's SafeToSend API to identify invalid or high-risk emails, improving deliverability, engagement, and campaign effectiveness.
Instructions
Verify an email address using AtData's SafeToSend API.
This tool verifies email addresses to filter out invalid and high-risk ones,
which results in higher open rates, clicks, and conversions.
Args:
email: The email address to verify
api_key: AtData API key (if not provided, will try to get from ATDATA_API_KEY env var)
Returns:
Dictionary containing the verification results including:
- email: The email address that was verified
- status: The verification status
- deliverable: Whether the email is deliverable
- risk_level: Risk assessment of the email
- additional verification details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | ||
Yes |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Api Key"
},
"email": {
"title": "Email",
"type": "string"
}
},
"required": [
"email"
],
"type": "object"
}