email verification api free tier

Email verification API free tier

The product starts on Starter, so the free-tier search query should land on a page that explains the actual entry point and what is included.

Starter is the first plan.
It includes the core verification checks and API access.
Bulk, SMTP, and catch-all work move up to higher plans.
curl -X POST "https://your-domain.com/api/v1/[email protected]" \
  -H "X-Api-Key: ev_your_key_here"

Can I still test it?

Yes. Use the demo verification flow and sandbox to see the behavior before checkout.

Will this page confuse users?

No. It sets the expectation clearly and routes them to the correct pricing page.

Integration pattern

Use a server-side API key, validate on the backend, and return a short JSON result to your signup or import flow. That keeps secrets out of the browser and lets you enforce policy before you create user records.

Production concerns

The important pieces are rate limits, error codes, billing state, and clear response shapes. If a verification API is hard to integrate or hard to explain, developers will either skip it or wire it incorrectly.

FAQ

Can I evaluate the product first?

Yes. Use the public demo and the docs to confirm the response shape before subscribing.

What do I get on Starter?

The Starter plan is the first paid tier and includes the core verification workflow.

Do these pages replace docs?

No. They support discovery, search intent, and onboarding.

Why keep the code example short?

Because developers need the shape of the request, not a wall of boilerplate.

Related guides