Guide · 8 min read

What Is n8n Workflow Automation?

A plain-English guide to what n8n is, what it does, and when it's the right pick over Zapier or Make.

n8n (pronounced "n-eight-n", short for "nodemation") is an open-source workflow automation platform. You drag nodes onto a canvas, wire them together, and each node calls an app (Gmail, Slack, Airtable, OpenAI, your own database) or runs a bit of code. When a trigger fires — a new email, a webhook, a schedule — the workflow runs and the work gets done without anyone touching it.

Think of it as a visual programming environment built specifically for moving data between SaaS tools and APIs. It's what powers a lot of the "AI automation" you see online: an n8n workflow sits in the middle, ingests an event, asks an LLM what to do, and writes the result back into your stack.

What n8n is good at

  • 400+ native integrations — Gmail, Slack, Notion, Airtable, HubSpot, Stripe, OpenAI, Anthropic, plus every major database.
  • Self-hosting — run it on your own server, VPS, or Docker container. Your data never leaves your infrastructure.
  • Code when you need it — drop in a JavaScript or Python node for anything the visual editor can't express.
  • Per-execution pricing on Cloud — much cheaper than per-task tools at scale.
  • Native AI nodes — built-in support for LangChain, vector stores, and agentic loops.

n8n vs Zapier vs Make

Capabilityn8nZapierMake
Self-hostableYes (free)NoNo
Pricing modelPer workflow executionPer taskPer operation
Code nodesJS + PythonLimitedJS only
AI / LLM nodesFirst-classAvailableAvailable
Best forDevs, agencies, complex flowsNon-technical, simple flowsVisual builders, mid-complexity

Real workflows we've shipped on n8n

  • Lead-to-CRM: webhook from a landing form → enrich with Clearbit → score against ICP using GPT-4 → assign in HubSpot → Slack ping the rep. Replaces ~3 manual steps per lead.
  • Invoice processing: Gmail trigger on supplier PDFs → vision model extracts line items → validate totals → push to Xero. Saves 8–12 hours/week for a 15-person ops team.
  • Content repurposing: new YouTube video → transcribe with Whisper → LLM drafts LinkedIn post, tweet, and newsletter blurb → queue in Buffer. One upload, five channels.

When to pick n8n

Choose n8n when:

  • Your workflow has 5+ steps or branches.
  • You're running thousands of executions per month and Zapier's task tier hurts.
  • Data sensitivity means you want to self-host.
  • You need an AI agent step (LLM call + tool use + memory).

Stick with Zapier or Make when the workflow is two or three steps, your team isn't technical, and volume is modest.

FAQ

Is n8n free?

Yes — n8n is open source and free to self-host. n8n Cloud starts around $20/month for managed hosting.

Is n8n better than Zapier?

For complex or high-volume workflows, yes — usually cheaper and far more flexible. For simple ones, Zapier's UX still wins.

Do I need to code to use n8n?

No. 90% of workflows are pure drag-and-drop. Code nodes are there for the edge cases.