Home Market Research Pricing API Bulk Compliance Blog Log in Sign up free

Real-time Verification

Get instant results with sub-50ms response times. Perfect for real-time form validation and user onboarding.

99.9% Accuracy

Our multi-layer validation ensures the highest accuracy rates in the industry.

Scalable Infrastructure

Handle millions of requests per day with our auto-scaling API infrastructure.

Enterprise Security

All requests are encrypted with TLS 1.3. Your data is always secure.

Simple Integration

One line of code to integrate. SDKs available for Python, JavaScript, Ruby, and more.

24/7 Support

Enterprise-grade support with SLAs and dedicated account managers.

Simple, RESTful endpoints

Our API is designed to be intuitive and easy to integrate

POST
/api/v1/verify
Verify a single email address in real-time. Returns detailed validation results.

Request Parameters

email string The email address to verify
api_key string Your API authentication key
POST
/api/v1/bulk
Submit a list of emails for bulk verification. Process up to 100,000 emails per request.

Request Parameters

emails array Array of email addresses to verify
callback_url string Webhook URL for async results (optional)
GET
/api/v1/status/{job_id}
Check the status of a bulk verification job and retrieve results.

Path Parameters

job_id string The ID of the bulk verification job
GET
/api/v1/credits
Check your remaining credits and usage statistics.

Request Parameters

api_key string Your API authentication key

Start coding in minutes

Choose your preferred programming language

import requests

# Your API credentials
API_KEY = "your_api_key_here"
API_URL = "https://api.emailverifier.com/v1/verify"

# Email to verify
email = "test@example.com"

# Make the request
response = requests.post(
    API_URL,
    json={
        "email": email,
        "api_key": API_KEY
    }
)

# Parse the response
result = response.json()

if result["valid"]:
    print(f"✓ {email} is valid")
else:
    print(f"✗ {email} is invalid: {result['reason']}")

print(f"Confidence score: {result['score']}%")
                    

Sample Response

{
  "valid": true,
  "score": 98,
  "details": {
    "syntax": true,
    "domain": "gmail.com",
    "mx": true,
    "smtp": true,
    "disposable": false,
    "role_based": false
  },
  "metadata": {
    "processing_time": "45ms",
    "credits_used": 1
  }
}
                    

Pay only for what you use

Volume discounts available for high-volume users

Credits
Price
Per Email
5,000
$25
$0.0050
10,000
$45
$0.0045
25,000
$99
$0.0040
50,000
$175
$0.0035
100,000
$325
$0.00325
250,000
$750
$0.0030
500,000
$1,400
$0.0028
1,000,000
$2,500
$0.0025

Need more than 1M credits? Contact us for enterprise pricing.

API frequently asked questions

Everything you need to know about our API

What is the rate limit for the API?
The default rate limit is 100 requests per second. Enterprise plans can get higher limits. Contact sales for custom limits.
How do I get an API key?
Sign up for an account and you'll get an API key instantly. You can manage your keys in the dashboard.
Is there a free tier?
Yes! New users get 100 free credits to test the API. No credit card required.
What happens if I exceed my credits?
API requests will fail with a 429 error. You can set up auto-refill in your dashboard to prevent interruptions.
Do you offer SLAs?
Yes, enterprise plans come with 99.9% uptime SLAs and guaranteed response times.
Is the API HIPAA compliant?
Enterprise plans can be configured for HIPAA compliance. Contact our sales team for details.

Ready to integrate?

Get started with 100 free credits. No credit card required.

Get Your API Key