Email Verification API
Verify Emails with 99% Accuracy
Reduce bounce rates and protect your sender reputation. Real-time verification with MX, SMTP, and disposable detection.
Try It Free
Simple Pricing
No hidden fees. Cancel anytime.
Most Popular
Pro
$59/mo
25,000 verifications/month
- Deep SMTP check
- Bulk verification
- Priority support
- Webhook notifications
Business
$99/mo
100,000 verifications/month
- Deep SMTP check
- Bulk verification
- Dedicated support
- Custom integration
Why Choose Our API?
99% Accuracy
Multi-layer verification including syntax, MX records, SMTP, and mailbox checks.
Fast Response
Average response time under 100ms. Verify thousands of emails in minutes.
Disposable Detection
Detect temporary and disposable email addresses from 5,000+ providers.
Bulk Processing
Upload CSV files and verify up to 100,000 emails in a single batch.
Quick API Reference
# Verify single email
curl -X POST https://fatihai.app/tools/email-verify/api/verify \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"email": "[email protected]"}'
# Response
{
"success": true,
"data": {
"email": "[email protected]",
"is_valid": true,
"score": 85,
"checks": {
"syntax": true,
"mx_records": true,
"smtp": true,
"disposable": true,
"role_based": true
}
}
}