Skip to main content
GET
List automation runs
This endpoint lists an automation’s recent executions (newest first). Pass run_id to get one execution’s step-by-step detail with a per-step classification — this is your debugger when an automation is failing. Once you have fixed what made a run fail, retry it from its failed step with Retry automation run — take the run’s id from this list.

Path Parameters

string
required
The ID of the automation (from List automations)

Query Parameters

string
A run ID from the list — returns that run’s step-by-step detail instead of the list
integer
How many recent runs to list (1–20, default 10)

Response — list (no run_id)

array
The automation’s recent executions, newest first

Response — detail (with run_id)

object
The execution’s detail
A missing automation — or one that does not belong to your account — returns a 404 with {"message": "Automation not found"}. A run_id that does not belong to this automation returns a 404 with {"message": "Run not found for this automation"}.