Veatrice is an email verification API that resolves catch-all, Gmail, and Outlook addresses other tools return as unknown — every verdict ships with its reason, and you're billed only for the emails we confirm.
The addresses that break every other validator. We probe deliverability directly and return a real verdict — not a shrug.
valid, invalid, risky — each with the signal behind it. No black-box unknown you have to guess at.
Confirmed emails are billed. Ones we genuinely can't resolve cost you nothing. Your list, not your budget.
import { Veatrice } from '@veatrice/sdk';
// verdict + reason, billed only if we confirm it
const veatrice = new Veatrice('vt_live_94k2…');
const result = await veatrice.verify('[email protected]');
/*
{
"email": "[email protected]",
"result": "valid",
"reason": "smtp_accepted",
"catch_all": false,
"cost": 0.002
}
*/