batch_verify_emails
Verify multiple email addresses in bulk using AtData's SafeToSend API. This tool processes each email individually, providing detailed results and summary statistics for batch verification.
Instructions
Verify multiple email addresses using AtData's SafeToSend API.
This tool allows you to verify multiple email addresses in batch,
processing each one individually through the SafeToSend API.
Args:
emails: List of email addresses to verify
api_key: AtData API key (if not provided, will try to get from ATDATA_API_KEY env var)
Returns:
Dictionary containing:
- results: List of verification results for each email
- summary: Summary statistics of the batch verification
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | ||
emails | Yes |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Api Key"
},
"emails": {
"items": {
"type": "string"
},
"title": "Emails",
"type": "array"
}
},
"required": [
"emails"
],
"type": "object"
}