GET
/
cloud
/
v3
/
gpu
/
virtual
/
{project_id}
/
{region_id}
/
flavors
curl --request GET \
  --url https://api.gcore.com/cloud/v3/gpu/virtual/{project_id}/{region_id}/flavors \
  --header 'APIKey: <api-key>'
{
  "count": 1,
  "results": [
    {
      "architecture": "x86_64",
      "capacity": 1,
      "disabled": false,
      "hardware_description": {
        "gpu": "1x NVIDIA 11GB",
        "ram": 2048,
        "vcpus": 1
      },
      "hardware_properties": {
        "gpu_count": 123,
        "gpu_manufacturer": "<string>",
        "gpu_model": "<string>"
      },
      "name": "g1-gpu-1-2-1"
    }
  ]
}

Authorizations

APIKey
string
header
required

API key for authentication.

Path Parameters

project_id
integer
required

Project ID

Examples:

1

region_id
integer
required

Region ID

Examples:

7

Query Parameters

hide_disabled
boolean
default:false

Set to true to remove the disabled flavors from the response.

Examples:

true

include_prices
boolean
default:false

Set to true if the response should include flavor prices.

Examples:

true

Response

200 - application/json

OK

The response is of type object.