Offers
List available GPUs
List available GPU cluster types with pricing, specs, and region availability.
X-API-Key<token>
GPU API key (format: mk_...). Generate from the dashboard
or via POST /api-keys.
In: header
Query Parameters
gpu_model?string
Filter by GPU model (e.g. H100, H200)
available_only?boolean
Only show currently available types (default true)
Default
truemax_price?number
Maximum price per hour in USD
min_vram?number
Minimum total VRAM in GB
sort_by?string
Sort field
Default
"price"Value in
"price" | "vram" | "gpu_count" | "gpu_model"sort_order?string
Sort direction
Default
"asc"Value in
"asc" | "desc"limit?integer
Results per page (max 100)
Default
6page?integer
Page number
Default
1Response Body
application/json
application/json
curl -X GET "https://gpu.huddleapis.com/api/v1/gpus/available"{
"code": "OK",
"data": {
"data": [
{
"id": "8ad6c8aa-...",
"gpu_model": "H200",
"gpu_count": 8,
"gpu_vram_gb": 141,
"total_vram_gb": 1128,
"vcpu_count": 208,
"ram_gb": 1800,
"storage_gb": 27000,
"price_per_hr": 32,
"price_per_sec": 0.00889,
"spot_price_per_hr": 0.75,
"spot_price_per_sec": 0.000208,
"currency": "USD",
"is_available": true,
"regions": [
{
"code": "FIN-03",
"name": "Finland 3",
"country_code": "FI"
}
],
"instance_type": "8H200.141G"
}
],
"meta": {
"total": 24
}
}
}{
"code": "BAD_REQUEST",
"error": "Missing required field: hostname"
}