GET
/
cloud
/
v1
/
ai
/
flavors
/
{project_id}
/
{region_id}
curl --request GET \
  --url https://api.gcore.com/cloud/v1/ai/flavors/{project_id}/{region_id} \
  --header 'APIKey: <api-key>'
{
  "count": 1,
  "results": [
    {
      "capacity": 10,
      "currency_code": "USD",
      "disabled": false,
      "flavor_id": "bm3-ai-1xlarge-h100-80-8",
      "flavor_name": "bm3-ai-1xlarge-h100-80-8",
      "hardware_description": {
        "cpu": "1x Intel Xeon 4C/8T 3.7 GHz",
        "disk": "2x 250GB SSD",
        "ephemeral": "2200GB NVMe (ephemeral)",
        "gpu": "1x NVIDIA 11GB",
        "network": "1x 500Mbps",
        "ram": "32 GB"
      },
      "price_per_hour": 1,
      "price_per_month": 720,
      "price_status": "show",
      "resource_class": "bm3-ai-1xlarge-h100-80-8"
    }
  ]
}

Authorizations

APIKey
string
header
required

API key for authentication.

Path Parameters

project_id
integer
required

Project ID

region_id
integer
required

Region ID

Query Parameters

disabled
boolean

Flag for filtering disabled flavors in the region

include_capacity
boolean

Set to true to see the number of available AI Infrastructure clusters of given configuration

include_prices
boolean

Set to true if flavor listing should include flavor prices

Response

200 - application/json

List of available flavors

The response is of type object.