email ping check api

Email ping check API

Use a ping check API when you need a mailbox-level signal without dispatching a message.

Ping checks sit between domain validation and full SMTP probing.
They help explain whether the mailbox appears responsive.
They are best used from trusted server environments.
220 mail.example.com ESMTP
EHLO emailverify.se
MAIL FROM:<[email protected]>
RCPT TO:<[email protected]>
QUIT

What does ping mean here?

It means a short verification conversation that checks whether the mailbox responds as expected.

Should I rely on it alone?

No. Use it as one signal in a larger verification chain.

What SMTP probing actually proves

SMTP probing is a protocol conversation with the recipient domain. It can indicate whether a mailbox appears to accept mail, but it also reflects server policy, temporary throttling, anti-abuse behavior, and catch-all handling.

How to use it safely

Keep probing on the server, add timeouts, respect provider limits, and avoid repeated retries against the same domain. In production, you should store only the resulting status and score, not the full transcript.

FAQ

How do I use this page?

Use it as a quickstart reference and link it from your docs, onboarding flow, or marketing page.

What should I do next?

Create an account, try the demo, and move the integration into your backend with a real API key.

Can SMTP confirm the owner is real?

No. It only suggests that the mailbox path looks reachable at the time of the check.

Why not send a message instead?

Because many products need a quiet validation path before onboarding or import completes.

Related guides