Skip to main content
GET
List sandboxes

Authorizations

Authorization
string
header
required

OAuth2 authentication with JWT tokens

Query Parameters

showTerminated
boolean
default:false

If true, include terminated sandboxes in the response. Defaults to false.

cursor
string

Opaque cursor returned by a previous response's meta.nextCursor. Only valid for the same query (workspace + filters); the server rejects cursors bound to a different query or older than 24h. Omit on the first page.

limit
integer
default:50

Maximum number of items to return per page. Defaults to 50, clamped to 200.

Required range: 1 <= x <= 200
sort
enum<string>

Sort spec, formatted as <key>:<direction>. Allowed values are createdAt:desc (default), createdAt:asc, name:asc, name:desc. The cursor fingerprint is bound to the sort, so a cursor opened with one value cannot be reused with another. Only honoured starting on Blaxel-Version 2026-04-28.

Available options:
createdAt:desc,
createdAt:asc,
name:asc,
name:desc
q
string

Substring search across metadata.name, metadata.displayName and labels (keys + values). Trimmed and lowercased server-side; queries shorter than 2 characters fall back to the unfiltered listing. Bound into the cursor fingerprint so a cursor opened with one query cannot be reused with another. Only honoured starting on Blaxel-Version 2026-04-28.

Maximum string length: 200
anchor
enum<string>

Start from a known pagination boundary. end is only supported for createdAt listings (asc or desc) and returns the tail page directly without walking every cursor from the first page.

Available options:
end
externalId
string

Filter sandboxes by external ID. When set, only sandboxes matching this caller-owned identifier are returned.

Response

successful operation

Cursor-paginated list of sandboxes. Returned starting with API version 2026-04-28; older API versions return a bare array.

data
object[]

Page of sandboxes. Items use the lite shape (no inline event history) to keep the page payload small, matching the unpaginated response.

meta
object

Pagination metadata returned alongside a page of listing results. Always present on listing endpoints starting with API version 2026-04-28.

Last modified on July 14, 2026