Skip to main content
GET
List executions with cursor pagination

Authorizations

Authorization
string
header
required

API key passed as Authorization: Bearer <api_key>

Query Parameters

limit
integer
default:20

Maximum number of executions to return

Required range: 1 <= x <= 100
cursor
string

Opaque cursor returned as next_cursor by the previous page

model
string

Filter executions by public model slug

status
string

Comma-separated status filter. Each token must be one of created, starting, success, or error; any other token returns 400.

workflow_id
string

Filter by workflow ID

workflow_execution_id
string

Filter by workflow execution ID

error_classification
enum<string>[]

Comma-separated canonical error classifications

Available options:
content_moderation,
execution_timeout,
invalid_user_input,
invalid_model_config,
provider_auth,
provider_error,
provider_rate_limit,
provider_unavailable,
internal_error,
unknown
from
string<date-time>

Start of creation time window, as RFC 3339

to
string<date-time>

End of creation time window, as RFC 3339

Response

Total-free cursor page

executions
object[]
required
limit
integer
required

Applied page limit

Required range: 1 <= x <= 100
Example:

20

has_more
boolean
required

Whether another page is available

Example:

true

next_cursor
string | null
required

Opaque cursor for the next page; null at exhaustion

Last modified on September 4, 2026