✉ validmail.dev
deterministic · no black-box scoring · free tier

Email validation with
nothing to hide.

Syntax, MX, disposable-domain, free-provider, role-based and typo checks in a single GET. Built for signup forms, list cleaning and CRM hygiene: no black-box scoring, every check visible, free tier with no card.

One call, six checks

Every verdict shows exactly which checks ran and why — no opaque score.

✉️Syntax (RFC 5322)structure, quoted locals, length limits
📡MX lookupdoes the domain actually accept mail
🔥Disposable domainsthrowaway inboxes and alias services, subdomains included
🏠Free providersconsumer mailboxes flagged — 120+ providers, regional variants
👥Role mailboxesinfo@, support@, billing@ — token-aware, no false positives
✏️Typosgmial.com → gmail.com, Damerau-matched and popularity-ranked

Try it

Live demoreal endpoint
result appears here

Shared demo key, rate-limited (/v1/validate). Get your own key for the free tier — 50 checks/day, no card.

Use it

# verdict, score, suggestion and per-check detail in one GET
curl "https://validmail.dev/v1/[email protected]" \
  -H "x-api-key: YOUR_API_KEY"

Free tier: 50 validations/day per key, no card. Request a key at [email protected]. Full reference in the interactive docs.

Where teams use it

Validate emails on signup forms

Catch typos and throwaways at the door, before they enter your users table.

Clean newsletter lists before you send

Flag dead domains and throwaway signups before your sender reputation pays for them.

Keep CRM contact data clean

Normalize and verify contacts at import time instead of paying for them forever.

Filter contact-form spam

Throwaway addresses in your contact form usually mean throwaway messages.

Qualify SaaS trial signups

Know at signup whether a trial is a business inbox or a burner.

Verify purchased marketing lists

Audit a list's quality before you spend a campaign on it.

FAQ

What's the difference between valid, risky and invalid?

invalid fails hard (bad syntax, no MX, or a disposable domain). risky is deliverable-looking but worth a second look — role mailboxes, typo suggestions, transient DNS errors. valid passed everything.

Can I allow disposable emails after all?

Yes — pass allow_disposable=true and disposable domains downgrade from invalid to risky instead of hard-failing.

Do you store the addresses I check?

No. Usage logging stores the request path only — never the query string, never the address. It's in the privacy policy.

What does the free tier include?

50 validations/day per key, every check, no card. Request a key and you're in. Higher volumes come later; the free cap isn't a pricing statement.

How are typo suggestions ranked?

Damerau-Levenshtein distance (transpositions count as one edit, like real typing), then same-TLD candidates, then provider popularity. Same input, same answer — always.