Get details of a web hosting product

Retrieve detailed information about a specific web hosting product, including its name, pricing, and technical specifications.

Path Parameters

slug string required Example

slug 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/webhosting/{slug}
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/product-overview/webhosting/start" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "id": "string",
    "slug": "string",
    "name": "string",
    "category": "string",
    "pricing": {
      "SEK": {
        "monthly": 0,
        "annual": 0,
        "setupMonthly": 0,
        "setupAnnual": 0
      },
      "USD": {
        "monthly": 0,
        "annual": 0,
        "setupMonthly": 0,
        "setupAnnual": 0
      },
      "EUR": {
        "monthly": 0,
        "annual": 0,
        "setupMonthly": 0,
        "setupAnnual": 0
      }
    },
    "specs": {
      "storage_gb": 0,
      "ram_gb": 0,
      "cpu_cores": 0,
      "bandwidth_tb": "string"
    },
    "domain_options": true
  }
}