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.
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/domain-products curl -X GET "https://cloud.hostup.se/api/domain-products" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"tlds": [
{
"tld": "string",
"productId": "string"
}
]
}
}