Get detailed information about a specific product

Retrieve detailed information about a specific product, such as a domain or a service. The returned data, including a unique ID, is often necessary to perform further actions or to display specific information to you. Note that the ID returned may need to be used in subsequent API calls to complete a process, such as initiating a payment or displaying an order status.

Path Parameters

id integer · min: 1 required Example

Unique id identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
429
error string
message string
retryAfter string
requestId string
GET https://cloud.hostup.se/api/product-details/{id}
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/product-details/203" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "id": "string",
    "category_id": "string",
    "category_name": "string",
    "type": "string",
    "name": "string",
    "description": "string",
    "visible": "string",
    "stock": "string",
    "qty": "string",
    "paytype": "string",
    "ptype": "string",
    "slug": "string",
    "sort_order": "string",
    "module": "string",
    "service_type": "string",
    "m": "string",
    "q": "string",
    "s": "string",
    "a": "string",
    "b": "string",
    "t": "string",
    "m_enabled": "string",
    "q_enabled": "string",
    "s_enabled": "string",
    "a_enabled": "string",
    "b_enabled": "string",
    "t_enabled": "string",
    "m_setup": "string",
    "q_setup": "string",
    "s_setup": "string",
    "a_setup": "string",
    "b_setup": "string",
    "t_setup": "string",
    "tag_name": "string",
    "tag_description": "string",
    "metadata": {
      "eppregex": "string"
    },
    "tlds": "string",
    "domain_options": "string",
    "autohostname": "string",
    "hostname": "string",
    "options": "string",
    "prices": [
      "string"
    ],
    "periods": {
      "1": {
        "period": "string",
        "register": "string",
        "transfer": "string",
        "renew": "string",
        "redemption": "string",
        "before": "string"
      },
      "2": {
        "period": "string",
        "register": "string",
        "transfer": "string",
        "renew": "string",
        "redemption": "string",
        "before": "string"
      },
      "3": {
        "period": "string",
        "register": "string",
        "transfer": "string",
        "renew": "string",
        "redemption": "string",
        "before": "string"
      }
    },
    "customizations": {},
    "config": {}
  }
}