
Whois API
Whois API
TL;DR
- Look up domain ownership, registration dates, and DNS information via API.
- 5,000 free queries per month.
- Competitive pricing with a generous free tier.
- 99.99% uptime guarantee. 850ms average latency.
Here's a sample response:
{
"domain": "github.com",
"registration": {
"registrar": "markmonitor, inc.",
"whois_server": "whois.markmonitor.com",
"created_at": "2007-10-09T18:20:50Z",
"updated_at": "2024-09-07T09:16:33Z",
"expires_at": "2026-10-09T18:20:50Z"
},
"dns": {
"name_servers": [
"ns-1283.awsdns-32.org",
"ns-1707.awsdns-21.co.uk",
"dns1.p08.nsone.net",
"dns2.p08.nsone.net",
"ns-421.awsdns-52.com",
"dns3.p08.nsone.net",
"ns-520.awsdns-01.net",
"dns4.p08.nsone.net"
],
"dnssec_status": "unsigned",
"dnssec_enabled": false
}
}What is this?
The Whois API gives you instant access to domain registration data. Enter a domain, get the registrar, creation date, expiration date, name servers, and DNSSEC status—all in clean JSON.
Whether you're building a domain monitoring tool, verifying ownership, or doing competitive research—this API delivers.
Why use it?
1. Generous Free Plan
5,000 queries per month. Free. No credit card required.
Most users find this covers their needs.
2. Affordable Pricing
When you do need more, our paid plans cost far less than the competition:
- $25 gets you 100K queries/month
- $75 gets you 1M queries/month
- $150 gets you 10M queries/month
Simple, low cost pricing.
3. Fast Response Times
Average latency of 850ms. You get domain data back before your user blinks.
4. 99.99% Uptime SLA
We know your business depends on reliable data. We guarantee 99.99% uptime. If we fail, you get a 3x refund. Simple.
5. Clean, Structured JSON
No need to parse messy raw WHOIS text. Get structured data that's ready to use in your app.
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 with it:
cURL:
curl -X GET "https://whois-api.omkar.cloud/whois?domain=github.com" \
-H "API-Key: YOUR_API_KEY"Python:
import requests
domain = "https://github.com"
api_key = "YOUR_API_KEY"
response = requests.get(
"https://whois-api.omkar.cloud/whois",
params={"domain": domain},
headers={"API-Key": api_key}
)
print(response.json())JavaScript (Node.js axios):
import axios from "axios";
const domain = "https://github.com";
const apiKey = "YOUR_API_KEY";
const response = await axios.get("https://whois-api.omkar.cloud/whois", {
params: { domain },
headers: { "API-Key": apiKey }
});
console.log(response.data);- Get structured JSON back and use it:
{
"domain": "github.com",
"registration": {
"registrar": "markmonitor, inc.",
"whois_server": "whois.markmonitor.com",
"created_at": "2007-10-09T18:20:50Z",
"updated_at": "2024-09-07T09:16:33Z",
"expires_at": "2026-10-09T18:20:50Z"
},
"dns": {
"name_servers": [
"ns-1283.awsdns-32.org",
"ns-1707.awsdns-21.co.uk",
"dns1.p08.nsone.net",
"dns2.p08.nsone.net",
"ns-421.awsdns-52.com",
"dns3.p08.nsone.net",
"ns-520.awsdns-01.net",
"dns4.p08.nsone.net"
],
"dnssec_status": "unsigned",
"dnssec_enabled": false
}
}That's it. Domain data in seconds.
❓ How accurate is the data?
Completely Accurate. We pull directly from official whois servers and registries in real-time. No cached or outdated information.
❓ 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.
❓ What data does the API return?
You get:
- Domain name
- Registrar (who manages the domain)
- WHOIS server
- Created date (when the domain was first registered)
- Updated date (last modification)
- Expiration date (when it needs renewal)
- Name servers (DNS providers)
- DNSSEC status (security configuration)
All in structured JSON. No parsing needed.
❓ How accurate is the data?
We query WHOIS servers in real-time. You get live data, not cached results from last week.
❓ Do you support all TLDs?
We support 1,000+ TLDs including .com, .net, .org, .io, .co, .ai, country-code TLDs, and most new gTLDs.
If a TLD isn't working, let us know—we'll add it.
❓ Can I use this for domain monitoring?
Yes. Common use cases:
- Monitor domain expirations for your portfolio
- Verify domain ownership before purchases
- Build domain research tools
❓ Tell me about Omkar Cloud.
We're an API services company with 20+ tools for OCR, data conversion, and developer APIs. Some things we are proud of:
- Built Botasaurus, an open-source automation framework with 3.7K+ GitHub stars
- Sponsored by 1000+ developers on GitHub
❓ How do I get a refund?
If within 90 days the product doesn't meet your needs, get a refund in 2 clicks.
-
Go to Transactions Page

-
Click "Request Refund"

-
Confirm by clicking Request Refund again. Amount will be refunded in 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 is a simple 2-click process, same as described above.
Questions? We have answers.
Reach out anytime. An intelligent person with deep product knowledge will solve your query within 1 working day.

