Skip to main content
cURL
curl --request GET \
--url https://api.baseten.co/v1/instance_type_prices \
--header "Authorization: Api-Key $BASETEN_API_KEY"
{
  "instance_types": [
    {
      "instance_type": {
        "id": "<string>",
        "name": "<string>",
        "memory_limit_mib": 123,
        "millicpu_limit": 123,
        "gpu_count": 123,
        "gpu_type": "<string>",
        "gpu_memory_limit_mib": 123
      },
      "price": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

You must specify the scheme 'Api-Key' in the Authorization header. For example, Authorization: Api-Key <Your_Api_Key>

Response

200 - application/json

A list of instance types.

A list of instance types.

instance_types
InstanceTypeWithPriceV1 · object[]
required