Overview
Retrieve workflow information from your n8n instance. Supports multiple detail levels to optimize response size and performance.Endpoint
Request Parameters
Workflow ID to retrieveExample:
"wf_abc123"Detail level for the response
Response
Common Fields (All Modes)
Operation success status
Workflow data (structure varies by mode)
Mode: minimal
Workflow unique identifier
Workflow name
Whether workflow is currently active
Whether workflow is archived
Array of tag strings
ISO 8601 creation timestamp
ISO 8601 last update timestamp
Mode: structure
Simplified node array
Workflow connections object
Total number of nodes
Total number of connections
Mode: details
Includes all full mode fields plus:
Execution statistics from last 10 runs
Whether workflow has a webhook trigger node
Webhook URL if applicable
Mode: full
Complete workflow object with all properties
Error Codes
Cause: Workflow ID does not existResolution: Use
n8n_list_workflows to find valid IDsCause: n8n API not configured or unreachableResolution: Verify configuration with
n8n_health_checkCause: Invalid mode parameterResolution: Use one of:
full, details, structure, minimalExamples
Response Examples
Performance Tips
The
structure mode response size is typically 70-90% smaller than full mode, making it ideal for UI rendering and topology visualization.Related Endpoints
- List Workflows - Browse all workflows
- Update Workflow - Modify workflow
- Validate Workflow - Check workflow validity
- Delete Workflow - Remove workflow