Email Validator Pro

Operationalv1.2.4 • Updated 2 days ago

API Overview

High-performance email verification service designed for large-scale operations. Validate deliverability, syntax, and disposable status in real-time with over 99.9% accuracy.

speed

Ultra Fast

Average response time of 120ms globally.

shield

GDPR Compliant

Zero data retention for maximum privacy.

Endpoints

POST/v1/validate

Body Parameters

ParameterTypeRequiredDescription
emailstringYesThe email address to validate.
check_dnsbooleanNoPerform MX record lookup.
check_smtpbooleanNoConnect to mail server to verify inbox.

terminalAPI Playground

Live Simulation
Enabled
Standard
import requests

url = "https://api.validatorpro.io/v1/validate"
payload = {
    "email": "hello@example.com",
    "check_dns": True
}
headers = {
    "Authorization": "Bearer YOUR_API_KEY"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())

Response Body

200 OK
{
  "success": true,
  "email": "hello@example.com",
  "status": "deliverable",
  "checks": {
    "format": true,
    "dns": true,
    "smtp": null,
    "disposable": false
  },
  "provider": "Google Workspace"
}