List Products
List Available Products By Product Type.
Last updated
curl -X GET '{API_URL}/api/v1/computing/products' \
-H 'Authorization: Bearer {TOKEN/KEY}' \
-H 'Content-Type: application/json'
{
"data": {
"CANADA": {
"H100": [
{
"id": "fcp66d566c43a9501001256",
"dc_id": 1,
"product_type": "Container",
"region": "CANADA",
"price_per_hour": 1.0,
"cpu": 24,
"ram": 200,
"gpu": "H100-80G-SXM",
"gpu_type": "H100",
"gpu_count": 1,
"disk_size": 200,
"ephemeral": 1500,
"stock": 99,
"cycle": "hourly",
"is_available": true
},
{
"id": "expde8da3529-f08d-4f86-8456-04094d19fbc4",
"dc_id": 2,
"product_type": "Virtual Machine",
"region": "CANADA",
"price_per_hour": 2.627,
"cpu": 28,
"ram": 180,
"gpu": "H100-80G-PCIe",
"gpu_type": "H100",
"gpu_count": 1,
"disk_size": 100,
"ephemeral": 750,
"stock": 99,
"cycle": "hourly",
"is_available": true
}
],
"A100": [
{
"id": "expd4b024f34-c9f3-4c41-ade4-4b56bbe3c64b",
"dc_id": 2,
"product_type": "Virtual Machine",
"region": "CANADA",
"price_per_hour": 1.867,
"cpu": 28,
"ram": 120,
"gpu": "A100-80G-PCIe",
"gpu_type": "A100",
"gpu_count": 1,
"disk_size": 100,
"ephemeral": 750,
"stock": 99,
"cycle": "hourly",
"is_available": true
}
],
"RTX": [
{
"id": "expd0ce88325-aeb0-48d0-8216-09506b58f1dd",
"dc_id": 2,
"product_type": "Virtual Machine",
"region": "CANADA",
"price_per_hour": 0.697,
"cpu": 28,
"ram": 58,
"gpu": "RTX-A6000",
"gpu_type": "RTX",
"gpu_count": 1,
"disk_size": 100,
"ephemeral": 0,
"stock": 99,
"cycle": "hourly",
"is_available": true
}
]
}
},
"message": "All products retrieved successfully",
"status": "success"
}