Skip to main content
GET
Typescript (SDK)

Authorizations

Syllable-API-Key
string
header
required

Path Parameters

workflow_id
integer
required

Query Parameters

start_datetime
string | null

ISO 8601 start datetime (inclusive) for created_at filtering

Example:

"2026-08-27T13:57:00.123456+00:00"

end_datetime
string | null

ISO 8601 end datetime (exclusive) for created_at filtering

Example:

"2026-08-28T00:00:00Z"

Response

Successful Response

How many of a workflow's executions are in each status, optionally within a created_at date range. Counts cover all matching rows, not just one page.

pending
integer
default:0

Rows in PENDING status

Example:

5

processing
integer
default:0

Rows in PROCESSING status

Example:

2

completed
integer
default:0

Rows in COMPLETED status

Example:

100

failed
integer
default:0

Rows in FAILED status

Example:

3

total
integer
default:0

Total rows across all statuses

Example:

110