Skip to main content
GET
/
sandbox
/
hub
cURL
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>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

successful operation

categories
any[]

Categories of the defintion

coming_soon
boolean

If the definition is coming soon

description
string

Description of the defintion

displayName
string

Display name of the definition

enterprise
boolean

If the definition is enterprise

icon
string

Icon of the definition

image
string

Image of the Sandbox definition

longDescription
string

Long description of the defintion

memory
integer

Memory of the Sandbox definition in MB

name
string

Name of the artifact

ports
object[]

Set of ports for a resource

url
string

URL of the definition

I