Email Validator
Check deliverability & catch fakes
Validate email addresses for format, deliverability, and risk. Detects disposable providers, verifies DNS/MX records, flags role-based addresses, and returns a 0-100 confidence score. Bulk mode handles up to 20 addresses at once. Essential for signup flows, CRM hygiene, and list cleaning.
Validate a single email address. Returns format validity, disposable/temporary provider detection, DNS and MX record verification, confidence score, role-based address detection, and risk signals.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "email-validator",
"skill": "validate_email",
"input": {
"email": "user@example.com"
}
}' \
https://api.toolrouter.com/v1/tools/callValidate multiple email addresses at once (up to 20). Returns validation results for each address including format validity, disposable detection, DNS verification, confidence scores, and risk signals.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "email-validator",
"skill": "bulk_validate",
"input": {
"emails": [
"user@example.com",
"test@guerrillamail.com"
]
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"email-validator","skill":"validate_email","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
What is the difference between valid format and deliverable?
The tool checks format, DNS and MX records, and risk signals, so an address can be syntactically valid without being a good email to send to.
Can it detect disposable or role-based emails?
Yes. It flags disposable providers and role-based addresses like info@ or support@ so you can filter low-quality leads.
How many emails can I check at once?
`bulk_validate` handles up to 20 addresses in one call and returns per-address results plus summary counts for invalid and disposable emails.
How should I read the confidence score?
Confidence is scored from 0 to 100. A score below 50 usually means the address is likely undeliverable or too risky to trust.