Skip to main content
GET
/
io.pocketenv.sandbox.getSandboxes
Get all sandboxes
curl --request GET \
  --url https://api.pocketenv.io/xrpc/io.pocketenv.sandbox.getSandboxes \
  --header 'Authorization: Bearer <token>'
{
  "sandboxes": [
    {
      "name": "<string>",
      "provider": "<string>",
      "description": "<string>",
      "website": "<string>",
      "logo": "<string>",
      "topics": [
        "<string>"
      ],
      "repo": "<string>",
      "readme": "<string>",
      "vcpus": 123,
      "memory": 123,
      "disk": 123,
      "ports": [
        33280
      ],
      "installs": 123,
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 1
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
integer

The maximum number of sandboxes to return.

Required range: x >= 1
offset
integer

The number of sandboxes to skip before starting to collect the result set.

Required range: x >= 0

Response

OK

sandboxes
object[]
total
integer
Required range: x >= 0