curl --request GET \
--url https://api.blaxel.ai/v0/sandbox/hub \
--header 'Authorization: Bearer <token>'
[
{
"categories": [
"<any>"
],
"coming_soon": true,
"description": "<string>",
"displayName": "<string>",
"enterprise": true,
"icon": "<string>",
"image": "<string>",
"longDescription": "<string>",
"memory": 123,
"name": "<string>",
"ports": [
{
"name": "<string>",
"protocol": "<string>",
"target": 123
}
],
"url": "<string>"
}
]
curl --request GET \
--url https://api.blaxel.ai/v0/sandbox/hub \
--header 'Authorization: Bearer <token>'
[
{
"categories": [
"<any>"
],
"coming_soon": true,
"description": "<string>",
"displayName": "<string>",
"enterprise": true,
"icon": "<string>",
"image": "<string>",
"longDescription": "<string>",
"memory": 123,
"name": "<string>",
"ports": [
{
"name": "<string>",
"protocol": "<string>",
"target": 123
}
],
"url": "<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?