List recent n8n executions
execution.listRetrieve recent executions from your n8n instance. Filter by workflow ID, status, or limit results; include full execution data for debugging.
Instructions
List recent executions from a live n8n instance (requires N8N_API_URL + N8N_API_KEY). Filter by workflowId, status (success|error|waiting), limit. Pass includeData: true to get the full execution body (large) — pair with execution.explain to diagnose a specific failure.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Page size (n8n default: 100, max: 250). | |
| status | No | Filter by status: success | error | waiting. | |
| workflowId | No | Filter by workflow ID. | |
| includeData | No | Include full execution data (large). Default false — pair with execution.explain. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | Number of executions returned. | |
| executions | Yes | Either trimmed summaries (default) or full execution bodies (includeData=true). |