get_execution
Retrieve detailed workflow execution data including status, timestamps, and node-level input/output for debugging or analyzing data transformations in n8n workflows.
Instructions
Retrieves detailed information about a specific workflow execution, including execution time, status, and optionally the full data processed at each step. Particularly useful for debugging failed workflows or understanding data transformations between nodes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the execution to retrieve - can be obtained from list_executions | |
| includeData | No | Whether to include detailed execution data showing the input/output at each node (may be large for complex workflows) | |
| verbosity | No | Output verbosity level (concise or full). Default is concise which preserves context window space. Use full when you need complete execution details. |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "ID of the execution to retrieve - can be obtained from list_executions",
"type": "string"
},
"includeData": {
"description": "Whether to include detailed execution data showing the input/output at each node (may be large for complex workflows)",
"type": "boolean"
},
"verbosity": {
"description": "Output verbosity level (concise or full). Default is concise which preserves context window space. Use full when you need complete execution details.",
"enum": [
"concise",
"full"
],
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}