Skip to main content

List N8N Workflows

Returns workflows from your connected N8N instance.

GET /api/v1/agents/n8n/workflows — 🔒 Requires Auth

Requires connected N8N credentials.

Query Parameters

ParameterRequiredDefaultDescription
active_onlyfalseReturn only active workflows
limit20Maximum number of workflows

Examples

# All workflows
curl "https://nasiko.dev/api/v1/agents/n8n/workflows" \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

# Active workflows only
curl "https://nasiko.dev/api/v1/agents/n8n/workflows?active_only=true&limit=50" \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."