Skip to main content
GET
List executions

Authorizations

Authorization
string
header
required

API key passed as an Authorization Bearer token: Authorization: Bearer YOUR_API_KEY

Query Parameters

limit
integer
default:20

Maximum number of executions to return

Required range: 1 <= x <= 100
offset
integer
default:0

Number of executions to skip for pagination

Required range: x >= 0
model
string

Filter executions by model slug

status
string

Comma-separated status filter. Each token must be one of created, starting, success, or error (lowercase); any other token returns 400 naming the allowed set. An empty or absent parameter applies no status filter.

workflow_id
string

Filter by workflow ID

workflow_execution_id
string

Filter by workflow execution ID

error_classification
enum<string>

Comma-separated canonical error classification filter. Restricts results to terminal error executions whose classification is in the set; an unrecognized value returns 400. Each value must be one of the listed enum members.

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. When omitted, defaults to 90 days before to (or before now when to is also omitted).

to
string<date-time>

End of creation time window, as RFC 3339

Response

List of executions

executions
object[]
required
total_count
integer
required

Number of matching executions. When total_capped is true this is a lower bound, not the exact total — do not use it as a pagination stop condition; keep increasing offset until a page returns fewer than limit rows. On the last page that returns rows, the exact total is reported and total_capped becomes false.

Example:

123

total_capped
boolean
required

true when the server did not compute the exact count (the count is capped, or its time budget elapsed) and total_count is a lower bound — more matching executions may exist beyond it.

Example:

false

offset
integer
required

Applied offset

Example:

0

limit
integer
required

Applied limit

Example:

20

Last modified on August 19, 2026