GET
/
cloud
/
v2
/
inference
/
flavors
curl --request GET \
  --url https://api.gcore.com/cloud/v2/inference/flavors \
  --header 'Authorization: <api-key>'
{
  "cpu": 1000,
  "description": "My first flavor",
  "gpu_count": 1,
  "gpu_memory": 1024,
  "gpu_model": "L40s",
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "name": "flavor1",
  "ram": 2048
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Query Parameters

limit
integer

Limit the number of returned events. Defaults to 100. Limited by max limit value of 1000

offset
integer

Offset value is used to exclude the first set of records from the result

Response

200
application/json

List of the inference instance flavors

The response is of type object.