Email Validator
OperationalReal-time email verification with SMTP checks and disposable detection
API Overview
Our Email Validator API provides deep email verification beyond simple syntax checks. Each request performs DNS MX record lookups to confirm the domain can receive mail, optional SMTP handshake verification to check if the specific mailbox exists, and cross-references against a continuously updated database of disposable and temporary email providers. Results include a confidence score so you can tune your acceptance threshold.
RFC 5321 Syntax Check
Validates email format against the official mail standard before any network calls.
MX Record Lookup
Confirms the domain has a mail server that can actually receive messages.
Disposable Detection
Cross-references 10,000+ known disposable and temporary email providers.
Sub-100ms at the Edge
Runs on Cloudflare's global network for ultra-low latency responses worldwide.
terminal API Playground
Live Simulationimport requests
url = "https://api.picopayd.codefission.co.uk/email/api/validate"
headers = {
"Content-Type": "application/json",
"X-PAYMENT": "<402-payment-token>"
}
payload = {
"email": "user@example.com"
}
response = requests.post(url, json=payload, headers=headers)
print(response.json()) {
"valid": true,
"email": "user@example.com",
"checks": {
"syntaxOk": true,
"mxExists": true,
"isDisposable": false
},
"confidence": 1.0
} Related Validation APIs
View all APIs arrow_forwardDomain Reputation
$0.001 / call
Check domain reputation with DNS validation, WHOIS lookups, SSL certificate verification, and threat intelligence scoring to protect your platform from bad actors.
Phone Validator
$0.001 / call
Verify phone numbers worldwide with E.164 formatting, country and carrier detection, line type classification, and messaging platform availability checks.
IBAN & SWIFT Validator
$0.001 / call
Validate IBAN and SWIFT/BIC codes with checksum verification and bank detail lookup, ensuring accuracy before initiating international wire transfers.