Get available top-level domains and their product IDs

Retrieve a list of all available top-level domains (TLDs) offered, along with their unique product IDs. This ID is necessary to perform subsequent actions such as registering a domain or linking it to other services. Use this endpoint when you need to know which domain extensions are available for registration.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/domain-products
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domain-products" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "tlds": [
      {
        "tld": "string",
        "productId": "string"
      }
    ]
  }
}