Retrieve all necessary information about a specific VPS product, including its specifications, pricing in different currencies, and available operating systems. Use this to display detailed product information for customers exploring or comparing VPS options.
slug string required Example slug parameter
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/product-overview/vps/{slug} curl -X GET "https://cloud.hostup.se/api/product-overview/vps/xs" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"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": {
"cpu": 0,
"ram_gb": 0,
"disk_gb": 0,
"bandwidth_tb": 0
},
"addons": {
"SEK": {
"extra_disk_gb_monthly": 0,
"extra_disk_gb_annual": 0,
"extra_bandwidth": [
{
"from_tb": 0,
"to_tb": 0,
"price_monthly": 0,
"price_annual": 0
}
],
"ipv4_monthly": 0,
"ipv4_annual": 0,
"attachable_storage_gb_monthly": 0,
"attachable_storage_gb_annual": 0
},
"USD": {
"extra_disk_gb_monthly": 0,
"extra_disk_gb_annual": 0,
"extra_bandwidth": [
{
"from_tb": 0,
"to_tb": 0,
"price_monthly": 0,
"price_annual": 0
}
],
"ipv4_monthly": 0,
"ipv4_annual": 0,
"attachable_storage_gb_monthly": 0,
"attachable_storage_gb_annual": 0
},
"EUR": {
"extra_disk_gb_monthly": 0,
"extra_disk_gb_annual": 0,
"extra_bandwidth": [
{
"from_tb": 0,
"to_tb": 0,
"price_monthly": 0,
"price_annual": 0
}
],
"ipv4_monthly": 0,
"ipv4_annual": 0,
"attachable_storage_gb_monthly": 0,
"attachable_storage_gb_annual": 0
}
},
"os_choices": [
"string"
],
"metered": true
}
}