n8n export:workflow --all | jq '.[].name'

Category: n8n & Workflow Automation

n8n export:workflow --all | jq '.[].name'

List workflow names from an export

Pipes the exported workflow array into jq and prints only the name field of each workflow. The export format is a plain JSON array, not an object with a workflows key, so the filter is .[] rather than .workflows[]. Add -r to strip the surrounding quotes.
Looking for more? Search all 7,657 commands — works offline, in English or Spanish, and fixes typos.