mark_email_read

Email Validator

Operational

Real-time email verification with SMTP checks and disposable detection

api API Docs

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.

verified

RFC 5321 Syntax Check

Validates email format against the official mail standard before any network calls.

dns

MX Record Lookup

Confirms the domain has a mail server that can actually receive messages.

block

Disposable Detection

Cross-references 10,000+ known disposable and temporary email providers.

speed

Sub-100ms at the Edge

Runs on Cloudflare's global network for ultra-low latency responses worldwide.

integration_instructions API Reference

terminal API Playground

Live Simulation
Perform MX record lookup
import 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())
Response Body 200 OK
{
  "valid": true,
  "email": "user@example.com",
  "checks": {
    "syntaxOk": true,
    "mxExists": true,
    "isDisposable": false
  },
  "confidence": 1.0
}