Retrieve detailed pricing information and availability for specific top-level domains (TLDs). This endpoint returns a product ID that may be needed for other domain-related API calls. Use this endpoint when you want to inform users about costs for registering, renewing, or transferring a domain.
tld string required Example tld parameter
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/product-overview/tlds/{tld} curl -X GET "https://cloud.hostup.se/api/product-overview/tlds/se" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"success": true,
"timestamp": "string",
"requestId": "string",
"data": {
"tld": "string",
"productId": "string",
"pricing": {
"SEK": {
"periods": [
{
"id": "string",
"years": 0,
"register": 0,
"renew": 0,
"transfer": 0,
"redemption": 0
}
],
"minRegister": 0,
"minRenew": 0,
"minTransfer": 0
},
"USD": {
"periods": [
{
"id": "string",
"years": 0,
"register": 0,
"renew": 0,
"transfer": 0,
"redemption": 0
}
],
"minRegister": 0,
"minRenew": 0,
"minTransfer": 0
},
"EUR": {
"periods": [
{
"id": "string",
"years": 0,
"register": 0,
"renew": 0,
"transfer": 0,
"redemption": 0
}
],
"minRegister": 0,
"minRenew": 0,
"minTransfer": 0
}
}
}
}