Domain API
The Domain API checks domain availability and retrieves basic registration information for any given domain.
For detailed domain registration information from the WHOIS protocol, check out our Whois API instead.
From 7,638 users
Applications using this API
API Status
API Response Times
Average | P50 | P75 | P90 | P95 |
|---|---|---|---|---|
| 332ms | 373ms | 432ms | 628ms | 1047ms |
Similar APIs
Didn't find what you were looking for? Suggest an improvement
/v1/domain GET
https://api.api-ninjas.com/v1/domain
Returns domain availability status and registration details for a given domain name.
Parameters
domainrequiredValid domain to check (e.g.
example.com). For top-level domains other than .com, a premium subscription is required.
Headers
X-Api-KeyrequiredAPI Key associated with your account.
Response
A JSON object with the following fields or an error if the request is unsuccessful.
domainThe domain name that was checked.
availableWhether the domain is available for registration (
trueorfalse).creation_dateUnix timestamp of when the domain was created (only present if
availableisfalse).registrarName of the registrar (only present if
availableisfalse).
Sample Request Live Demo!
Try our APIs in the API playground
Sign up for a free API key to get started — no credit card required.
https://api.api-ninjas.com/v1/domain?domain=example.comHeaders
X-Api-KeyLog in or sign up to get your API KeySample Response
Code Examples
1
2
curl -X GET "https://api.api-ninjas.com/v1/domain?domain=example.com" \
-H "X-Api-Key: YOUR_API_KEY"If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.
Frequently Asked Questions
Can I use the Domain API for commercial purposes?
Yes, but you must have a premium subscription. Commercial use of the Domain API is not permitted on the free tier. See our pricing page to choose a plan that fits your needs.How do I get an API key and start using the Domain API?
Sign up for a free account to instantly get your API key, then pass it in theX-Api-Keyheader on every request. The documentation above includes ready-to-run examples in cURL, Python, JavaScript, Node.js, and more.What happens if I exceed my quota for the month?
Your API requests will simply be denied once you hit your monthly quota — you will never be charged more than the plan you signed up for. To increase your quota, you can upgrade your plan any time on our pricing page.What happens if a request to the Domain API fails?
The API responds with a standard HTTP status code and a JSON error message describing the problem. See our error codes reference for the full list of codes and how to resolve each one, or contact support if you need help.How do I check whether a specific domain is available?
Send a GET request to the/v1/domainendpoint with the requireddomainparameter (e.g.domain=example.com). Note that checking top-level domains other than .com requires a premium subscription.What does the Domain API response include?
The response returns thedomainthat was checked and a booleanavailablefield indicating whether it can be registered; whenavailableisfalse, it also includes thecreation_date(a Unix timestamp) and theregistrarname. See the error codes page for unsuccessful requests.What are some use cases for the Domain API?
It is ideal for building domain name search tools, registration/availability checkers, and brand-monitoring dashboards that need a quick yes/no availability answer plus basic registration details. For full WHOIS registration records, use the Whois API, and explore related tools like the DNS Lookup API and URL Lookup API.How is the Domain API different from the Whois API?