API Reference
GPU Families
Browse available GPU models grouped by family.
This endpoint is public and does not require authentication.
Returns GPU models grouped by family with pricing summaries and availability counts.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Browse available GPU models grouped by family.
GET /api/v1/gpu-families
{
"data": [
{
"key": "h100",
"label": "H100",
"maxVram": 94,
"cheapestPrice": 1.66,
"offerCount": 55,
"availableCount": 7,
"variantSlugs": [
"h100-pcie-80gb",
"h100-nvl",
"h100-sxm-80gb"
]
},
{
"key": "a100",
"label": "A100",
"maxVram": 80,
"cheapestPrice": 0.80,
"offerCount": 55,
"availableCount": 10,
"variantSlugs": [
"a100-sxm-40gb",
"a100-pcie-80gb",
"a100-pcie-40gb",
"a100-sxm-80gb"
]
}
]
}
| Field | Description |
|---|---|
key | Family identifier |
label | Display name |
maxVram | Highest VRAM variant in GB |
cheapestPrice | Lowest available hourly rate in USD. null if no stock. |
offerCount | Total number of offers in this family |
availableCount | Number of currently available offers |
variantSlugs | GPU slugs — use these as gpu filter values in the offers endpoint |