N8n List Executions
n8n_list_executionsList recent workflow executions (runs) in your n8n instance — for "did our workflows run", "show recent failures", "execution history". Each: id, workflowId, status (success/error/waiting), mode, startedAt, stoppedAt. Filter by status and/or workflow_id. Requires your instance_url + n8n API key (_apiKey).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max executions (1-250, default 50). | |
| status | No | Filter: "success" | "error" | "waiting". Omit for all. | |
| _apiKey | Yes | REQUIRED — your n8n API key (Settings → n8n API → Create an API key). Sent as the X-N8N-API-KEY header. No shared key exists for this pack. | |
| workflow_id | No | Only executions of this workflow id. | |
| instance_url | Yes | REQUIRED — your n8n instance base URL, e.g. "https://you.app.n8n.cloud" (n8n Cloud) or "https://n8n.example.com" (self-hosted). Must be a public https URL. |