v1

latestOpenAPI 3.1.02026-07-2676123203.9 KB
Catalog

List GPU types

Returns available GPU types with pricing. Availability is included only when requested with include=AVAILABILITY.

get/v2/catalog/gpus

Query parameters

includeCatalogInclude[]

Comma-separated optional expansions. Supported value today: AVAILABILITY. This may expand with more include values in the future.

productProduct[]

Comma-separated availability product contexts. Supported values: POD, CLUSTER, SERVERLESS. Valid only with include=AVAILABILITY. Upstream default when omitted: POD.

countinteger

GPU count for availability and lowest-price calculations. Valid only with include=AVAILABILITY. Defaults to 1.

cloud'SECURE' | 'COMMUNITY'

GPU availability cloud filter.

Cloud type for availability and lowest-price calculations. Valid only with include=AVAILABILITY. Supported values: SECURE, COMMUNITY. Upstream default when omitted: SECURE.

minCudaVersionstring

Minimum CUDA version for availability and lowest-price calculations. Valid only with include=AVAILABILITY. Format: integer major or major.minor, e.g. 12 or 12.1.

Response

OK

Example response

{
  "gpus": [
    {
      "id": "NVIDIA GeForce RTX 4090",
      "name": "RTX 4090",
      "pool": "ADA_24",
      "memory": 24,
      "secure": true,
      "community": true,
      "price": {
        "secure": 0.44,
        "community": 0.31
      },
      "maxCount": {
        "secure": 8,
        "community": 4
      },
      "dataCenters": [
        {
          "id": "US-CA-2",
          "name": "US California 2"
        }
      ]
    }
  ]
}