Regions
Regions & Volume Types
Discover available regions and volume types for GPU deployments.
The Regions API lets you query available datacenter regions and the storage volume types supported in each. Every deployment and volume must be created in a specific region — GPU availability and pricing can vary by location.
Base URL: https://gpu.huddleapis.com/api/v1
List Regions
curl -H "X-API-Key: mk_your_key" \
https://gpu.huddleapis.com/api/v1/regionsResponse:
{
"code": "OK",
"data": [
{
"code": "FIN-01",
"name": "Finland 1",
"country_code": "FI"
},
{
"code": "FIN-03",
"name": "Finland 3",
"country_code": "FI"
}
]
}How Regions Affect Your Workflow
- GPU availability — Different GPU types may be available in different regions. Check Offers with region filtering.
- Pricing — Prices can vary by region for the same GPU type.
- Volumes — Volumes are region-bound. You can only attach a volume to a deployment in the same region.
- Latency — Choose a region close to your data sources or users for lower network latency.
Using Regions
Pass the region code as the location parameter when deploying or creating volumes:
# Deploy in Finland 1
curl -X POST -H "X-API-Key: mk_your_key" \
-H "Content-Type: application/json" \
-d '{
"cluster_type": "1H100.80S.30V",
"image": "ubuntu-22.04-cuda-12.4-cluster",
"hostname": "my-gpu",
"ssh_key_ids": ["key-id"],
"location": "FIN-01"
}' \
https://gpu.huddleapis.com/api/v1/deployments/clustersList Volume Types
See which storage volume types are supported:
curl -H "X-API-Key: mk_your_key" \
https://gpu.huddleapis.com/api/v1/volume-typesResponse:
{
"code": "OK",
"data": [
{
"type": "NVMe",
"description": "High-performance NVMe SSD storage"
},
{
"type": "HDD",
"description": "Standard hard disk storage"
},
{
"type": "NVMe_Shared",
"description": "Shared NVMe accessible across nodes"
},
{
"type": "HDD_Shared",
"description": "Shared HDD accessible across nodes"
}
]
}See Volumes for details on creating and managing storage.
Next Steps
- Browse Offers to see GPU availability per region
- Create Volumes in your chosen region
- Start a Deployment in a specific region