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 Schema
{
"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"
]
}
Response
Click "Send Request" to see the response...
Authorizations
Authorization
header
required
Authentication token in the format "Bearer <token>"