WhatsAppCall MeLinkedInGitHub
Sep 5, 20268 min readTechnology

Self-Hosted n8n vs Zapier vs Make: What Automation Really Costs a Small Business in 2026

Author

Marwan Ayman

Full-Stack Developer & Automation Engineer

Self-Hosted n8n vs Zapier vs Make: What Automation Really Costs a Small Business in 2026

Short answer: for a small business running a handful of workflows a few thousand times a month, self-hosted n8n costs $5 to $10 a month in server fees plus a one-time setup of $500 to $1,200, while the same workload on Zapier lands at $100 or more a month and on Make at $20 to $40 a month. Below a few hundred runs a month, Zapier or Make is cheaper once you count your time. The crossover comes fast because of how each tool counts usage: Zapier per task, Make per operation, n8n per workflow run.

I build and host automations for clients, so I keep a running comparison of list prices. The figures below are the published prices as of September 2026 and change often; treat them as the shape of the decision rather than a quote, and check the vendors' pricing pages before you commit.

How do Zapier, Make and n8n count usage?

Short answer: Zapier bills for every action step that runs (a "task"), Make bills for every module that runs (an "operation", renamed "credit" in 2025), and n8n bills once per workflow run (an "execution") no matter how many steps it contains. The unit is the whole story: a ten-step workflow costs ten Zapier tasks, ten Make credits and one n8n execution.

ToolEntry paid plan (Sept 2026 list price)Included volumeBilling unit
Zapier Professional$29.99 / month, or $19.99 / month billed annually750 tasks / month1 task = 1 action step executed (triggers are free)
Make CoreAbout $9 – $10.59 / month depending on billing period10,000 credits / month1 credit = 1 module run for standard modules
n8n Cloud Starter$24 / month, or $20 / month billed annually2,500 executions / month, 5 concurrent1 execution = 1 workflow run, any number of steps
n8n self-hosted (Community Edition)Server only: a Hetzner CX23 (2 vCPU, 4 GB RAM, 40 GB) is about €3.79 – €5.49 / month; a comparable DigitalOcean droplet is about $6Limited by the server, not by a quotaNone

Two details matter beyond the headline numbers. Zapier's cheapest paid tier only includes 750 tasks, so a modest workflow with several steps exhausts it in days. n8n Cloud stops all workflows when the execution cap is hit until the cycle resets, so size the plan for your peak month, not your average.

What do three realistic workloads cost on each?

Short answer: a lead-capture workflow at 500 runs a month is affordable everywhere; the same workflow at 2,000 runs is where Zapier becomes the most expensive option by a wide margin; and a business with five workflows at real volume is cheapest on a self-hosted server by a factor of ten or more.

Assume a lead-capture automation like the one I describe in the WhatsApp and Google Sheets guide: a webhook trigger, validation, a Google Sheets append, a WhatsApp template message, a CRM upsert and a Slack notification. That is six steps after the trigger.

WorkloadZapierMaken8n Cloudn8n self-hosted
1 workflow × 500 runs / month (3,000 steps)3,000 tasks: above the 750-task Professional tier, so a higher task tier, roughly $50 – $75 / month3,000 credits: fits Core, about $9 – $11 / month500 executions: fits Starter, $20 – $24 / monthServer ≈ $5 / month
1 workflow × 2,000 runs / month (12,000 steps)12,000 tasks: roughly $100 – $150 / month depending on tier12,000 credits: above Core, so the next tier, roughly $16 – $30 / month2,000 executions: fits Starter, $20 – $24 / monthServer ≈ $5 / month
5 workflows × 2,000 runs / month (60,000 steps)60,000 tasks: several hundred dollars a month60,000 credits: roughly $60 – $120 / month on a higher tier10,000 executions: above Starter, next tier roughly $60 / monthServer ≈ $5 – $10 / month (upgrade RAM for concurrency)

The dollar figures for higher tiers are approximate because all three vendors sell volume in steps and discount annual billing; the ranking, however, is stable: at real volume, Zapier is the most expensive, Make is competitive until you add many steps, n8n Cloud is flat and predictable, and self-hosting is almost free after setup.

What are the hidden costs of self-hosting n8n?

Short answer: setup, security, updates, backups and the occasional broken node after an upgrade. Budget $500 to $1,200 once for a properly secured instance and one to two hours a month of attention, or a small retainer if nobody on the team wants to own it.

  • Installation and hardening. Docker Compose, HTTPS with an automatic certificate, basic-auth or SSO in front of the editor, a firewall, and a separate PostgreSQL database rather than the default SQLite. This is most of the setup fee.
  • Backups. Workflow definitions and credentials live in the database. A nightly encrypted dump to object storage costs almost nothing but must be configured and tested once.
  • Updates. n8n ships often. Pin a version, read the release notes, upgrade monthly on a staging copy first if your workflows are business-critical.
  • Monitoring. An error workflow that posts to Slack or WhatsApp when any workflow fails, plus an uptime check on the server, turns silent failures into five-minute fixes.
  • Licence terms. The Community Edition's sustainable-use licence covers internal business use. If you plan to resell hosted automation to third parties, read the current terms or use the enterprise licence.
  • People. Someone has to own it. In practice that is a developer on a light retainer or a technical founder who enjoys it.

When should you stay on Zapier or Make?

  • You run fewer than a few hundred tasks a month and nobody on the team is technical
  • The integrations you need are mainstream SaaS apps with polished Zapier or Make connectors and you never need custom code
  • You would rather pay $30 a month than think about servers, and your volume will stay low
  • Compliance requires a vendor with a signed data-processing agreement and you do not want to be that vendor yourself

Make in particular is a strong middle ground: cheap, visual, and it handles complex branching well. The case for leaving it is usually data privacy, a need for custom JavaScript or Python steps, or volume.

When does self-hosted n8n win clearly?

  1. Volume. Anything above roughly 2,000 workflow runs a month with multi-step logic.
  2. Data privacy. Customer data, invoices and messages stay on your server in your region, which matters for Gulf and European clients.
  3. Custom code. A JavaScript or Python step inside the workflow removes the need for a separate serverless function.
  4. AI workloads. Native OpenAI and Claude nodes, agents and vector stores with no per-step markup; you pay the model provider only.
  5. Webhooks at scale. Form submissions, payment events and WhatsApp callbacks arrive as webhooks and fan out without counting against a task quota.
  6. Long-running or scheduled jobs. Nightly reports, sync jobs and reconciliation run for free at 3 a.m.

How does a migration from Zapier to n8n work?

  1. Export the list of Zaps with their triggers, steps and monthly task counts. Rank by cost.
  2. Provision a small VPS, install n8n with Docker, PostgreSQL, HTTPS and authentication, and set up backups and an error workflow.
  3. Rebuild the top three Zaps by cost first, with explicit error handling and retries, which Zapier hides from you.
  4. Run both in parallel for a week, comparing outputs.
  5. Turn off the Zaps, downgrade the plan, and document each workflow in a short README inside the n8n instance.

On my pricing page, a secured self-hosted n8n setup is $500 to $1,200 and a rebuilt workflow with error handling is $300 to $2,500 depending on the number of integrations. For a business spending $100 or more a month on Zapier, the migration pays for itself within the first year, and the privacy and flexibility gains start on day one.

Frequently asked questions

Is self-hosted n8n really free?

The n8n Community Edition is free to run on your own server under its sustainable-use licence for internal business use. You pay for the server (about $5 to $10 a month for a small VPS), for someone to install and secure it, and for occasional updates and backups. Check the current licence terms if you plan to resell automation as a service.

When is Zapier still the right choice?

When you run fewer than a few hundred tasks a month, nobody on the team is technical, and the apps you connect are mainstream. At that volume the subscription is cheaper than an hour of anyone's time, and the setup is instant.

How is n8n pricing different from Zapier and Make?

Zapier counts every action step as a task, Make counts every module run as an operation (called a credit since 2025), and n8n counts one execution per workflow run regardless of how many steps it contains. A ten-step workflow costs ten Zapier tasks, ten Make credits and one n8n execution.

What does it cost to migrate from Zapier to self-hosted n8n?

A typical setup is $500 to $1,200 for a secured, backed-up n8n instance on your own server, plus $300 to $2,500 per workflow rebuilt with proper error handling. Most small businesses recover that in the first year of removed subscriptions.

Can n8n do the AI steps that Zapier and Make offer?

Yes. n8n has native nodes for OpenAI, Anthropic Claude and other model providers, plus an AI agent node and vector-store integrations. Self-hosted, you pay only the model provider's API fees, with no per-step markup.

Related: the direct answer on replacing Zapier with self-hosted n8n and the business automation service page.

Tags

n8nZapierMakeAutomationPricing