Email Verification API
Email Verification API
TLDR
- Verify any email address for deliverability and get owner details like name and gender.
- 5,000 free queries per month. No credit card.
Here's a sample response:
{
"is_valid": true,
"status": "valid",
"is_free_email": false,
"first_name": null,
"last_name": null,
"gender": null
}❓ What is this?
A REST API that verifies email addresses in real time. Send an email, get back deliverability status, free email detection, and owner details—all in clean JSON.
Perfect for signup forms, email marketing, CRM enrichment, or any app that needs to validate emails before sending.
❓ Why use it?
1. Generous Free Plan
5,000 queries per month. Free. No credit card required.
That's 5,000 email verifications every month at no cost. Validate your entire contact list before you spend a dime.
2. Affordable Pricing
Most email verification APIs charge $0.005–$0.006 per email. That adds up fast.
Our plans are simple and predictable:
- $25 gets you 100K queries/month ($0.25/1K)
- $75 gets you 1M queries/month ($0.075/1K)
- $150 gets you 10M queries/month ($0.015/1K)
3. 99.99% Uptime SLA
Email verification on signup forms needs to be instant and always on.
We guarantee 99.99% uptime. Your forms never break because of us.
❓ How to use it?
Simple REST API. Here's how it works:
-
Sign up on Omkar Cloud by visiting this link.

-
Visit the API Key Page.
-
Copy your API key.

-
Make a request:
cURL:
curl -X GET "https://email-verification-api.omkar.cloud/verify?email=happy.to.help%40omkar.cloud" \
-H "API-Key: YOUR_API_KEY"Python:
import requests
email = "happy.to.help@omkar.cloud"
api_key = "YOUR_API_KEY"
response = requests.get(
"https://email-verification-api.omkar.cloud/verify",
params={"email": email},
headers={"API-Key": api_key}
)
print(response.json())JavaScript (Node.js):
import axios from "axios";
const email = "happy.to.help@omkar.cloud";
const apiKey = "YOUR_API_KEY";
const response = await axios.get("https://email-verification-api.omkar.cloud/verify", {
params: { email },
headers: { "API-Key": apiKey }
});
console.log(response.data);- Get verification results and use them.
That's it. Email to verification result in milliseconds.
API Reference
Endpoint
GET https://email-verification-api.omkar.cloud/verify
Parameters
- email (required, string):
The email address to verify. Must be a valid email format. Example:happy.to.help@omkar.cloud.
Response
Returns verification status and owner details:
{
"is_valid": true,
"status": "valid",
"is_free_email": false,
"first_name": null,
"last_name": null,
"gender": null
}❓ What data does the API return?
You get:
- is_valid — Whether the email address is deliverable (
true/false) - status — Verification status (e.g.,
"valid","invalid") - is_free_email — Whether the email is from a free provider like Gmail, Yahoo, or Outlook
- first_name — Owner's first name (when available)
- last_name — Owner's last name (when available)
- gender — Owner's gender (when available)
All in structured JSON. Ready to use in your app.
❓ How accurate is the data?
The API performs multi-step verification: syntax check, MX record lookup, and SMTP server ping.
This is the same approach used by industry-leading email verification services. You get accurate, real-time deliverability results.
❓ Can it detect disposable/temporary emails?
Yes. The API identifies disposable email providers (like Guerrilla Mail, Temp Mail, Mailinator) and flags them accordingly.
This helps you block throwaway signups and keep your user base clean.
❓ Tell me about Omkar Cloud.
We're an API services company with 20+ tools for OCR, document processing, and developer APIs. Some things we are proud of:
- Built Botasaurus, an open-source Python framework with 3.7K+ GitHub stars
- Sponsored by 1000+ developers on GitHub
❓ How much does it cost?
- Free — $0 — 5,000 queries/month
- Starter — $25 — 100,000 queries/month
- Grow — $75 — 1,000,000 queries/month
- Scale — $150 — 10,000,000 queries/month
Why we're affordable: Low overhead. We run lean and pass the savings to you.
Note: You get 5,000 free queries every month. Most users find this covers their needs.
❓ How do I get a refund?
If the product doesn't meet your needs within 90 days, get a refund in 2 clicks.
-
Go to Transactions Page

-
Click "Request Refund"

-
Confirm by clicking Request Refund again. The amount will be refunded within 1-2 business days. We'll email you updates.

No emails. No explanations. Simple 2-click process.
❓ Is there a catch in refunds?
No catch.
It's a simple 2-click process, exactly as described above.
Questions? We have answers.
Reach out anytime. We will solve your query within 1 working day.

