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"
}
]Returns all deployment regions with their current availability status and supported hardware flavors. Use this to discover where resources can be deployed.
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"
}
]OAuth2 authentication with JWT tokens
successful operation
Continent of the location
"NA"
Country of the location
"US"
Hardware flavors available in the location
Show child attributes
Name of the location
"Portland"
Region of the location
"us-pdx-1"
Status of the location
"healthy"
Was this page helpful?