Workflows and apps
List executions
Recent executions of one workflow, newest first.
GET
https://cloud.generalinput.com/v1/workflows/:id/executionsAuthenticationRequires
workflows:manage on a personal API key. A CLI session always passes.Query parameters
| Name | Type | Notes |
|---|---|---|
limit | integer | 1 to 100. Default 20. |
Response
{
"executions": [
{
"id": "exec_01HX…",
"status": "completed",
"isTest": true,
"eventDescription": "Triggered by Jack Joliet",
"name": "Posted 12 stories to #engineering",
"createdAt": "2026-09-03T10:00:00.000Z",
"completedAt": "2026-09-03T10:00:41.000Z"
}
]
}status is one of initializing, scheduled, running, awaiting_input, completed, failed, cancelled, skipped, or filtered. A run reads filtered when the workflow's filter.ts returned skip. name is a generated per-run title when one exists; fall back to eventDescription.