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

to
string<date-time>

End of creation time window, as RFC 3339

Response

List of executions

executions
object[]
required
total_count
integer
required

Total number of matching executions

Example:

123

offset
integer
required

Applied offset

Example:

0

limit
integer
required

Applied limit

Example:

20

Last modified on July 27, 2026