Email Verification API
Email Verification API
Trueguard's email verification API, also called an email validation API, is a REST endpoint that checks any email address for syntax, MX records, SMTP deliverability, disposable domains, catch-all behavior, role-based mailboxes, and free-mail providers in one call. 100 validations a month free, no credit card. Paid plans start at $49.99 for 50,000 validations.
Paste an address above. Or try one of the examples below.
What does the email verification API return?
Six signals in one JSON response. Every field on every plan, including free.
Syntax
syntaxRFC 5322 grammar check. Deterministic. Malformed addresses fail here.
MX records
mxDoes the domain publish mail servers? We resolve and return what the domain advertises. No MX, no mail.
SMTP deliverability
smtpWe open a real conversation with the destination server and stop before any message is sent.
Disposable
disposableIs the address on a throwaway domain like Mailinator, Guerrilla Mail, Temp-Mail, or 10MinuteMail? Matched against a continuously updated registry of thousands.
Catch-all
catch_allIs the domain set to accept mail for every address? Flagged, and the deliverability verdict returns risky. No SMTP probe can prove a specific mailbox exists on a catch-all.
Role-based
role_basedIs this a generic shared mailbox rather than a person? Flagged so you can route role accounts differently.
Free-mail provider
free_providerGmail, Outlook, Yahoo, iCloud, Proton, Zoho. Flagged so you can treat personal addresses differently from corporate ones.
How do I verify an email with one API call?
Three steps. Most teams integrate in an afternoon.
Sign up for a free API key
No card. 100 validations a month. Same latency, same response shape, same accuracy.
Call POST /email/validation
One header. One body field. HTTPS only.
Read the JSON
Six signals, one verdict. Branch on the field that matters for your use case.
The same call in nine languages. Real working snippets. Paste, set the key, run. If your stack isn't listed, the curl translates cleanly.
curl -X POST https://api.trueguard.io/v2/email/validation \
-H "X-API-KEY: $YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"email":"founder@yourcompany.com"}'What does a typical JSON response look like?
{
"email": "realemail@gmail.com",
"rawEmail": "realemail@gmail.com",
"deliverability": {
"status": "safe",
"isSmtpValid": true,
"isMxValid": true,
"isCatchall": false,
"isInboxFull": false,
"isDeliverable": true,
"isDisabled": false,
"mxRecords": [
"alt2.gmail-smtp-in.l.google.com",
"gmail-smtp-in.l.google.com",
"alt4.gmail-smtp-in.l.google.com",
"alt1.gmail-smtp-in.l.google.com",
"alt3.gmail-smtp-in.l.google.com"
]
},
"domain": {
"name": "gmail.com",
"age": 11263,
"isLive": true,
"isRisky": false
},
"quality": {
"isDisposable": false,
"isFree": true,
"isRole": false,
"isSubaddress": false
}
}How accurate is real-time email verification?
Some checks are right every time. Others depend on the remote mail server cooperating.
<1%
False positive rate
Sub-1s
Median response time
100/month
Free API validations per month
0.001$/check
Scalable pricing
Syntax, MX, and disposable checks are deterministic. SMTP and catch-all detection depend on the destination mail server. If you need this at scale, the email verification API returns the same answer with 50,000 monthly validations on the paid plan.
How much does the email verification API cost?
Three tiers. Free plan needs no card.
Pay for what you check. Cancel anytime. Overage is billed through Stripe at $0.001 per validation regardless of volume.
What counts as a validation? One request to the validation endpoint is one validation. Failed calls (4xx from your side) do not count.
What do teams use email verification for?
One bad address costs more than you think. It bounces, it lands you on blocklists, it sneaks a fake account into your free tier, or it sits in your CRM as a dead lead. Verification is one API call that pays back across every signup you accept and every email you send.
Stop fake signups at the form
Disposable and invalid addresses shouldn't enter your database. Verify on the signup form and bounce the junk before it creates an account, eats a free-tier seat, or pollutes your conversion analytics.
Protect sender reputation
Mailbox providers penalize senders who hit dead addresses. A bounce rate above 2% gets you throttled. Above 5% you start landing in spam. Validate before the send and your deliverability stays clean.
Clean an old list before you mail it
Lists rot. People change jobs, abandon inboxes, get suspended. Run a list through verification before the next campaign and drop the dead addresses. Cheaper than the deliverability damage from sending anyway.
Qualify leads at capture
Form fills with info@, support@, or a temp-mail domain aren't real leads. Verification flags role accounts and disposables so sales spends time on contacts that can actually buy.
Frequently asked questions
It's a REST endpoint. Given an email address, it returns whether the address is syntactically valid, has working MX records, accepts mail via SMTP, and whether the domain is disposable, catch-all, role-based, or a free provider. Call it from your backend at signup, form submit, or before a campaign sends.

