Whois

Query domain registration information including registrar details, creation and expiration dates, nameserver configurations, and registrant information where available, supporting lookups for all major top-level domains.

Lookup a domain name

Lookup a domain name using multiple APIs. The first successful response will be returned.

GET
/ whois

Parameters

Name Type Description Required
domain string Optional

Response

{
  "type": "object",
  "properties": {
    "whois": {
      "type": "string",
      "description": "The details of the domain name",
      "example": "company name"
    }
  },
  "required": [
    "whois"
  ]
}
curl --request GET \
  --url "https://www.apikiss.com/api/v1/whois?domain=example.com" \
  --header 'Authorization: Bearer <token>'
{
  "type": "object",
  "properties": {
    "whois": {
      "type": "string",
      "description": "The details of the domain name",
      "example": "company name"
    }
  },
  "required": [
    "whois"
  ]
}

Authorizations

Authorization
header
required

Authentication token in the format "Bearer <token>"

Path Parameters

domain
string

Response

200 - application/json
whois
string
required

The details of the domain name

Example: company name

Try it out

Don't have a key? Sign up to get one for free.

Response

Click "Send Request" to see the response...