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.

Starter

$29/mo

5,000 verifications/month

  • Deep SMTP check
  • Bulk verification
  • API access
Get Started
Most Popular

Pro

$59/mo

25,000 verifications/month

  • Deep SMTP check
  • Bulk verification
  • Priority support
  • Webhook notifications
Get Started

Business

$99/mo

100,000 verifications/month

  • Deep SMTP check
  • Bulk verification
  • Dedicated support
  • Custom integration
Get Started

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
    }
  }
}