Skip to main content
GET
/
locations
List deployment regions
curl --request GET \
  --url https://api.blaxel.ai/v0/locations \
  --header 'Authorization: Bearer <token>'
[
  {
    "continent": "NA",
    "country": "US",
    "flavors": [
      {
        "name": "t4",
        "type": "cpu"
      }
    ],
    "location": "Portland",
    "region": "us-pdx-1",
    "status": "healthy"
  }
]

Authorizations

Authorization
string
header
required

OAuth2 authentication with JWT tokens

Response

200 - application/json

successful operation

continent
string

Continent of the location

Example:

"NA"

country
string

Country of the location

Example:

"US"

flavors
object[]

Hardware flavors available in the location

location
string

Name of the location

Example:

"Portland"

region
string

Region of the location

Example:

"us-pdx-1"

status
string

Status of the location

Example:

"healthy"