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.
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/product-overview/webhosting curl -X GET "https://cloud.hostup.se/api/product-overview/webhosting" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"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
}
}