Holiday Sale! Get over 30% off when you subscribe to an annual plan!

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.

(4.6)

From 7,638 users

4,400+

Applications using this API

API Status

Online - All Systems Operational

API Response Times

Average
P50
P75
P90
P95
332ms373ms432ms628ms1047ms

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

  • domain  required

    Valid domain to check (e.g. example.com). For top-level domains other than .com, a premium subscription is required.

Headers

  • X-Api-Key  required

    API Key associated with your account.

Response

  • domain

    The domain name that was checked.

  • available

    Whether the domain is available for registration (true or false).

  • creation_date

    Unix timestamp of when the domain was created (only present if available is false).

  • registrar

    Name of the registrar (only present if available is false).

Sample Request Live Demo!

domain

Try this API endpoint with all available parameters in our API playground

https://api.api-ninjas.com/v1/domain?domain=example.com

Headers

X-Api-KeyLog in or sign up to get your API Key

Sample Response

JSON
1 2 3 4 5 6 { "domain": "example.com", "available": false, "creation_date": 808372800, "registrar": "reserved-internet assigned numbers authority" }

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.