Get information about a specific domain

Retrieve detailed information about a domain, including its registration status, owner information, and nameservers. This endpoint also returns a requestId that can be used to track related operations.

Query Parameters

domain string required

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/domain-lookup
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domain-lookup?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",
    "transferLocked": true,
    "lockReason": "string",
    "nameServers": [
      "string"
    ],
    "available": true,
    "tooNewForTransfer": true,
    "transferEligibleDate": "string",
    "daysUntilTransferEligible": "string"
  }
}