Get an overview of available web hosting services

Retrieve a list of all available web hosting products, including their specifications and pricing. It also returns a unique ID required to initiate purchases or link the service to other operations.

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
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/product-overview/webhosting" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "products": [
      {
        "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
      }
    ],
    "total": 0
  }
}