List Automation runs
List runs of the workspace’s v2 Automations, newest first, filtered by status, Template, or date range and paged by cursor. Journey (v3) runs are listed by GET /journeys/runs instead — the two surfaces never return each other’s runs. Runs are retained for 95 days.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
A cursor token for pagination. Use the next_cursor from the previous response to fetch the next page of results. Treat it as opaque.
The number of runs to return per page, between 1 and 50. Defaults to 20. Values outside the range are clamped, and a non-numeric value falls back to 20.
^\d+$A comma-separated list of run statuses to filter on, e.g. PROCESSED,ERROR.
A comma-separated list of Automation Template ids to filter on.
An inclusive lower bound on created_at, as an ISO 8601 date or timestamp (e.g. 2026-08-18 or 2026-08-18T20:06:36.259Z). Any other format returns 400.
An inclusive upper bound on created_at, in the same format as start_date.