GPU Pricing API
Real-time cloud GPU pricing from 11+ providers. Updated hourly.
Endpoints
GET /v1/health
Health check. Returns API status and data freshness timestamp.
GET /v1/gpus
List all GPU pricing across all providers. Filter by gpu, provider, or pricing type (on_demand/spot).
GET /v1/gpus/:id
Get detailed pricing for a specific GPU model across all providers.
GET /v1/providers
List all tracked cloud GPU providers with their available GPU models.
Quick Start
curl -H "Authorization: Bearer YOUR_API_KEY" \ https://api.alphaoneindex.com/v1/gpus?gpu=H100
# Python
import requests
resp = requests.get(
"https://api.alphaoneindex.com/v1/gpus",
headers={"Authorization": "Bearer YOUR_API_KEY"},
params={"gpu": "H100"}
)
data = resp.json()
for entry in data["results"]:
print(f"{entry['provider']}: ${entry['on_demand']}/hr")Response Example
{
"metadata": {
"updated": "2026-03-06T23:53:10Z",
"total_results": 3,
"source": "Alpha One Index"
},
"results": [
{
"provider": "RunPod",
"gpu": "H100 SXM",
"gpu_count": 1,
"memory_gb": 80,
"on_demand": 2.49,
"spot": 1.89
}
]
}Pricing Tiers
Pro
$49/mo
- 50,000 requests/day
- Historical pricing data
- CSV export endpoint
- Priority support
Enterprise
Custom
- Unlimited requests
- Webhook notifications
- Custom data feeds
- Dedicated support
Terms of Use
The GPU Pricing API is provided by Alpha One Index under the MIT license for data access. Attribution is required for published analyses. Rate limits are enforced per tier. Data is sourced from official provider pricing pages and updated hourly via automated pipelines.