Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.blaxel.ai/v0/locations \
--header 'Authorization: Bearer <token>'[
{
"continent": "<string>",
"country": "<string>",
"flavors": [
{
"name": "<string>",
"type": "<string>"
}
],
"location": "<string>",
"region": "<string>",
"status": "<string>"
}
]Returns a list of all locations available with status.
curl --request GET \
--url https://api.blaxel.ai/v0/locations \
--header 'Authorization: Bearer <token>'[
{
"continent": "<string>",
"country": "<string>",
"flavors": [
{
"name": "<string>",
"type": "<string>"
}
],
"location": "<string>",
"region": "<string>",
"status": "<string>"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
successful operation
Was this page helpful?