Get prices and details for top-level domains (TLDs)

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.

Path Parameters

tld string required Example

tld parameter

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/product-overview/tlds/{tld}
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/product-overview/tlds/se" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "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
      }
    }
  }
}