veatriceveatrice
join waitlist

Verify the emails everyone else calls unknown

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.

Private beta. One email when it opens — no spam, ever.

Catch-all resolved94%
Gmail deliverable
Outlook SMTPLIVE
Unknown rate0.3%
Avg verify210ms
Billed per verifiedconfirmed only
Catch-all resolved94%
Gmail deliverable
Outlook SMTPLIVE
Unknown rate0.3%
Avg verify210ms
Billed per verifiedconfirmed only

Catch-all resolution

The addresses that break every other validator. We probe deliverability directly and return a real verdict — not a shrug.

A reason with every verdict

valid, invalid, risky — each with the signal behind it. No black-box unknown you have to guess at.

Only pay for verified

Confirmed emails are billed. Ones we genuinely can't resolve cost you nothing. Your list, not your budget.

verify.ts
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
  }
*/