Skip to main content
GET
List Workspace Schedule Executions

Authorizations

Authorization
string
header
required

OAuth2 authentication with JWT tokens

Query Parameters

limit
integer
default:20

Number of items per page

Required range: 1 <= x <= 100
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.

sort
enum<string>

Sort by creation time. Defaults to newest first.

Available options:
createdAt:desc,
createdAt:asc
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
status
enum<string>

Filter by process submission acceptance status. Historical rows without status do not match this filter.

Available options:
succeeded,
failed
sandbox
string

Filter by sandbox name.

schedule
string

Filter by schedule id.

since
string<date-time>

Inclusive beginning of the createdAt window, as RFC 3339.

until
string<date-time>

Inclusive end of the createdAt window, as RFC 3339.

Response

200 - application/json

successful operation

Cursor-paginated list of a sandbox's schedule execution history (across all its schedules).

data
object[]

Page of schedule executions.

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 August 28, 2026