Retrieve a list of all available VPS products, including specifications, pricing, and operating system choices. Returns a unique product ID for use in subsequent API calls, such as initiating an order.
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/product-overview/vps curl -X GET "https://cloud.hostup.se/api/product-overview/vps" \
-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": {
"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
}
],
"total": 0
}
}