List recent n8n executions
execution_listList recent n8n workflow executions. Filter by workflow ID, status (success, error, waiting), and limit results.
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 |
|---|---|---|---|
| workflowId | No | Filter by workflow ID. | |
| status | No | Filter by status: success | error | waiting. | |
| limit | No | Page size (n8n default: 100, max: 250). | |
| includeData | No | Include full execution data (large). Default false — pair with execution_explain. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| executions | Yes | Either trimmed summaries (default) or full execution bodies (includeData=true). | |
| count | Yes | Number of executions returned. |