Get WHOIS information for a domain

View detailed information about a specific domain, such as owner, registrar, and expiration date. The endpoint returns a unique ID needed for follow-up calls related to domain status or management.

Query Parameters

domain string required

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
500
error string
message string
code string
timestamp string
requestId string
GET https://cloud.hostup.se/api/whois
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/whois?domain=string" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "cached": true,
    "domain": "string",
    "registrar": "string",
    "expiryDate": "string",
    "createdDate": "string",
    "updatedDate": "string",
    "status": [
      "string"
    ],
    "nameServers": [
      "string"
    ],
    "dnssec": "string",
    "transferLocked": true,
    "timestamp": "string"
  }
}