API operational

email validation
for developers

No BS email validation API. Real SMTP checking, clean responses, transparent pricing. Built by developers who got tired of overhyped alternatives.

~/dev/my-app
# Validate an email in one request
curl -X POST https://api.verifykit.io/v1/verify \
-H "Authorization: Bearer vk_live_..." \
-d '{"email": "[email protected]"}'
# Get real results, not patterns
{ "valid": true, "reachable": "safe", "score": 0.95, "smtp": { "state": "deliverable" } }

Why we built this

Existing email validation services are either too expensive, inaccurate, or full of marketing BS. We wanted something simple that just works.

API-First Design

Clean REST API. No bloat. Just email validation that works.

curl, fetch(), axios

Real SMTP Validation

Not just pattern matching. Actually checks if emails exist.

MX + SMTP + APIs

Edge Computing

We combine multiple edge compute providers to get the best performance and reliability. Fast anywhere in the world.

~200-400ms avg response

SDKs

WIP

SDKs available for multiple languages and frameworks.

Node.js, Python, PHP, Go ...

Developer Experience

No marketing BS. Plain simple implementation.

Built by devs

Fair Pricing

1000 free validations/month. Unlimited validations under fair usage policy.

No surprises

Live API Playground

Test the API with real validation. Every request hits our live infrastructure.

~/dev/email-validator
email:
Generated cURL command
curl -X POST https://api.verifykit.io/v1/verify \
-H "Authorization: Bearer vk_live_..." \
-d '{"email":"[email protected]"}'
HTTP 200 OK

Enter an email and validate to see results

$ ./validate --email [email protected]

~200ms
Average response time
99.9%
API uptime
1000+
Free validations/month

Simple pricing

No hidden fees. No enterprise sales calls. Just pay for what you use.

Free

$0/month
  • • 1,000 validations/month
  • • single API key
  • • API access
Start free
Most popular

Pro

$49/month
  • • 50,000 validations/month
  • • unlimited API keys
  • • verification history
  • • duplicate removal
Get started

Unlimited

$249/month
  • • unlimited validations
  • • all pro features
  • • dedicated support
  • • fair usage: 5M/month
Get started

Ready to validate?

Get your API key and start validating emails in 30 seconds.

# Get started in 3 commands
1. curl -X POST verifykit.io/signup
2. export API_KEY="vk_live_..."
3. curl -H "Auth: Bearer $API_KEY" ...