Skip to content

Instantly share code, notes, and snippets.

@walidbr
walidbr / n8n_workflow_api.sh
Created September 17, 2025 01:29
N8n workflow api
export n8n_token=""
# https://docs.n8n.io/api/api-reference/#tag/workflow/get/workflows
# View workflows
curl 'http://localhost:5678/api/v1/workflows' --header "X-N8N-API-KEY: $n8n_token" | jq | less
@walidbr
walidbr / n8n-docker-compose.yml
Created September 16, 2025 09:29
n8n-docker-compose.yml
version: '3.8'
services:
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: n8n
ports:
- "5678:5678"
volumes:
- n8n_data:/home/node/.n8n