curl --request GET \
--url https://api.blaxel.ai/v0/workspaces \
--header 'Authorization: Bearer <token>'
[
{
"createdAt": "<string>",
"updatedAt": "<string>",
"createdBy": "<string>",
"updatedBy": "<string>",
"accountId": "<string>",
"displayName": "<string>",
"labels": {},
"name": "<string>",
"region": "<string>",
"runtime": {
"generation": "<string>"
}
}
]
Returns a list of all workspaces.
curl --request GET \
--url https://api.blaxel.ai/v0/workspaces \
--header 'Authorization: Bearer <token>'
[
{
"createdAt": "<string>",
"updatedAt": "<string>",
"createdBy": "<string>",
"updatedBy": "<string>",
"accountId": "<string>",
"displayName": "<string>",
"labels": {},
"name": "<string>",
"region": "<string>",
"runtime": {
"generation": "<string>"
}
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
successful operation
The response is of type object[]
.
Was this page helpful?