GPU Index API

Integrate our real-time GPU price data into your own applications, dashboards, and workflows. Our REST API is simple, reliable, and free to get started with.

Endpoints

Get All Prices

Retrieve a snapshot of the latest prices for all tracked GPUs across all providers.

GET https://api.aravolta.com/v1/prices/all


// Example Response

{
  "data": [
    {
      "gpu": "NVIDIA H100",
      "provider": "AWS",
      "price": 4.10,
      "currency": "USD",
      "unit": "hour"
    },
    {
      "gpu": "NVIDIA H100",
      "provider": "CoreWeave",
      "price": 2.21,
      "currency": "USD",
      "unit": "hour"
    },
    // ... more results
  ],
  "timestamp": "2025-08-10T14:30:00Z"
}

Get Prices for a Specific GPU

Filter results to get all available prices for a single GPU model. Use the GPU model ID from our documentation.

GET https://api.aravolta.com/v1/prices/gpu/nvidia-h100


// Example Response

{
  "data": [
    {
      "gpu": "NVIDIA H100",
      "provider": "AWS",
      "price": 4.10,
      "currency": "USD",
      "unit": "hour"
    },
    {
      "gpu": "NVIDIA H100",
      "provider": "CoreWeave",
      "price": 2.21,
      "currency": "USD",
      "unit": "hour"
    }
  ],
  "timestamp": "2025-08-10T14:32:00Z"
}