v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
Bare Metal

List bare metal flavors

List all available bare metal flavors in the specified project and region. When include_prices is specified, the list includes pricing information. A client in trial mode gets all price values as 0. If you get Pricing Error contact the support.

get/cloud/v1/bmflavors/{project_id}/{region_id}

Path parameters

project_idinteger required

Project ID

region_idinteger required

Region ID

Query parameters

disabledboolean

Flag for filtering disabled flavors in the region. Defaults to true

exclude_linuxboolean

Set to true to exclude flavors dedicated to linux images. Default False

exclude_windowsboolean

Set to true to exclude flavors dedicated to windows images. Default False

include_capacityboolean

Set to true if the response should include flavor capacity

include_pricesboolean

Set to true if the response should include flavor prices

include_reservation_stockboolean

Optional. Set to true if flavor listing should include count of reserved resources in stock.

Response

List of bare metal flavors

countinteger required

Number of objects

Example response

{
  "count": 1,
  "results": [
    {
      "architecture": "x86_64",
      "capacity": 1,
      "currency_code": "USD",
      "flavor_id": "g2-standard-32-64",
      "flavor_name": "g2-standard-32-64",
      "os_type": "linux",
      "ram": 2048,
      "reserved_capacity": 5,
      "resource_class": "bm1-ai-small",
      "vcpus": 1
    }
  ]
}