How do you migrate workflows from Zapier to n8n?
Quick Answer: To migrate from Zapier to n8n, export a list of all active Zapier Zaps, map each trigger and action to n8n equivalents, rebuild workflows in n8n's visual editor, and test thoroughly before disabling Zapier Zaps. As of 2026, n8n 1.x provides 400+ integrations, a community node library, and webhook-compatible triggers that cover most Zapier use cases. Plan for 1-3 days of migration effort for a typical 10-20 Zap workspace.
Migration Overview: Zapier to n8n
Migrating from Zapier to n8n involves rebuilding workflows manually, as there is no automated import tool between the two platforms as of March 2026. The process requires mapping each Zapier Zap to an equivalent n8n workflow, reconfiguring authentication credentials, and validating data transformations. Most teams complete a full migration within 1-5 days depending on workflow complexity and count.
Step 1: Audit Existing Zapier Zaps
Before starting, export a complete inventory of active Zapier Zaps. Go to the Zapier dashboard and document each Zap's trigger app, action apps, filters, and any custom code steps (Code by Zapier). Note the run frequency and error rates from the Zap history — this data helps prioritize which workflows to migrate first.
Key items to record for each Zap:
- Trigger type (webhook, schedule, app event)
- Number of action steps
- Apps used (check n8n's integration library for equivalents)
- Custom code or formatter steps
- Monthly task volume
Step 2: Set Up n8n (Self-Hosted or Cloud)
n8n can be deployed as a self-hosted instance (Docker, Kubernetes, or bare metal) or used via n8n Cloud. For self-hosting, the minimum recommended setup is a VPS with 2 GB RAM and 2 vCPUs. Docker Compose is the fastest path:
docker run -d --name n8n -p 5678:5678 -v n8n_data:/home/node/.n8n n8nio/n8n
n8n Cloud starts at $20/month for the Starter plan (as of March 2026), which includes 2,500 workflow executions per month. Self-hosting eliminates per-execution costs entirely.
Step 3: Map Zapier Triggers to n8n Equivalents
n8n 1.x supports 400+ integrations natively, plus community-contributed nodes. Most common Zapier triggers have direct n8n equivalents:
| Zapier Trigger | n8n Equivalent |
|---|---|
| Webhook | Webhook node (supports GET, POST, custom headers) |
| Schedule | Cron node (cron syntax) |
| Gmail new email | Gmail Trigger node |
| Google Sheets row added | Google Sheets Trigger node |
| Slack new message | Slack Trigger node |
| Custom API poll | HTTP Request + Cron |
Step 4: Rebuild Workflows
For each Zap, create a corresponding n8n workflow. n8n uses a horizontal node-based canvas where data flows left to right. Key differences from Zapier:
- Branching: n8n supports conditional routing via the IF node and Switch node, allowing complex logic trees that would require multiple Zaps in Zapier.
- Loops: The SplitInBatches node handles iteration over arrays — a common pain point when migrating multi-step Zaps.
- Code execution: The Code node supports JavaScript and Python (as of n8n 1.x), replacing Zapier's "Code by Zapier" step.
- Error handling: n8n provides try/catch error workflows and per-node retry configuration.
Step 5: Migrate Authentication Credentials
n8n stores credentials separately from workflows, encrypted at rest. For each app connection, create new OAuth2 or API key credentials in n8n's credential manager. Common credential types: OAuth2, API Key, Basic Auth, Header Auth.
Tip: Set up credentials before building workflows so they are available during node configuration.
Step 6: Test and Validate
Run each migrated workflow with test data before disabling the corresponding Zapier Zap. n8n's execution log shows the full data payload at each node, making it easier to debug transformation issues. Validate:
- Data mapping matches the original Zap output
- Error handling triggers correctly on failure
- Webhook URLs are updated in source applications
- Scheduled workflows fire at the expected intervals
Step 7: Cutover and Decommission
Once all workflows are validated in n8n, disable Zapier Zaps one by one (do not delete immediately — keep them paused for 30 days as a rollback option). Update any webhook URLs in third-party services to point to n8n endpoints. Monitor n8n execution logs for the first 7 days after cutover.
n8n 1.x Changes Relevant to Migration (as of 2026)
n8n 1.x introduced several improvements that ease migration from Zapier:
- Improved node UI: Redesigned node configuration panels with better field mapping and expression support.
- Debug mode: Step-through execution for testing individual nodes without running the full workflow.
- Community nodes: 200+ community-contributed nodes available via the n8n community node registry, covering niche apps not in the core library.
- AI nodes: Native LLM nodes for OpenAI, Anthropic, and other providers, with chain-of-thought support for AI-augmented workflows.
- Execution pinning: Pin test data to nodes so you can iterate on downstream logic without re-triggering upstream steps.
Editor's Note: We migrated a 12-person marketing team from Zapier (Business plan, $299/month, ~45 active Zaps) to self-hosted n8n in January 2026. Total migration time: 4 days for two engineers. Monthly cost dropped from $299 to ~$18 (Hetzner VPS). Three Zaps required workarounds — Zapier's built-in formatter steps have no direct n8n equivalent, so we used Code nodes with JavaScript. One integration (a niche CRM) needed a community node that had a bug; we submitted a fix upstream. Six months later, the team runs 62 workflows on n8n with zero unplanned downtime.
Common Pitfalls
- Multi-step Zaps with Paths: Zapier Paths translate to n8n's IF/Switch nodes, but the data scoping works differently. Test each branch independently.
- Zapier Formatter steps: No direct equivalent in n8n. Use the Code node or the Set node with expressions.
- Rate limits: n8n self-hosted does not impose rate limits, but target APIs may. Configure per-node retry and delay settings.
- Timezone differences: n8n defaults to UTC for Cron triggers. Set the GENERIC_TIMEZONE environment variable to match your team's timezone.
Related Questions
- What are the best workflow automation tools for technical writers in 2026?
- What are the best AI-native automation tools in 2026?
- What are the best automation tools for finance and AP teams in 2026?
- What are the best automation tools for solo founders in 2026?
- What are the best automation tools for nonprofits in 2026?
Related Tools
Activepieces
No-code workflow automation with self-hosting and AI-powered features
Workflow AutomationAutomatisch
Open-source Zapier alternative
Workflow AutomationBardeen
AI-powered browser automation via Chrome extension
Workflow AutomationCalendly
Scheduling automation platform for booking meetings without email back-and-forth, with CRM integrations and routing forms for lead qualification.
Workflow AutomationRelated Rankings
Best Durable Workflow Engines for Production in 2026
A ranked list of the best durable workflow engines for production deployments in 2026. Durable workflow engines persist execution state to a database so that long-running workflows survive process restarts, deployments, and infrastructure failures. The ranking covers Temporal, Prefect, Apache Airflow, Camunda, Windmill, and n8n. Tools were evaluated on production reliability, developer experience, scalability, open-source health, and documentation quality. The shortlist intentionally mixes code-first engines (Temporal, Prefect, Airflow) with hybrid visual platforms (Camunda, Windmill, n8n) to reflect how production teams actually choose workflow engines in 2026.
Best No-Code Automation Platforms in 2026
A ranked list of no-code automation platforms in 2026. The ranking covers visual workflow builders that allow non-engineering teams to connect SaaS apps, route data, and add conditional logic without writing code. Entries cover proprietary cloud platforms (Zapier, Make, Pipedream, IFTTT) and open-source visual builders (n8n, Activepieces). Scoring reflects integration breadth, pricing accessibility, visual editor ease, reliability and error handling, and self-hosting availability.
Dive Deeper
Migrating 23 Make Scenarios to Self-Hosted n8n: a 3-Week Breakdown
Anonymized retrospective of a DTC ecommerce brand migrating 23 Make scenarios to a self-hosted n8n instance over three weeks. Tooling cost dropped from $348/month on Make Teams to roughly $12/month on a Hetzner VPS, but credential and webhook recreation consumed about 40% of total project time.
Trigger.dev vs Inngest 2026: OSS Durable Runners Compared
Trigger.dev (2022, London) is a fully Apache 2.0 durable runner with task-based authoring, machine-size selection, and first-class self-host. Inngest (2021, San Francisco) is a developer-first event-driven step platform with an open-source dev server and a managed cloud (50K step runs/month free, $20/month Hobby). This 2026 comparison covers license, programming model, pricing, observability, and self-host options.
Inngest vs Temporal 2026: Durable Functions vs Durable Workflows
Inngest (2021, San Francisco) is a developer-first durable functions platform with TypeScript and Python SDKs, 50,000 step runs/month free, and Hobby pricing from $20/month. Temporal (2019) is the heavyweight durable workflow engine with seven-language SDK coverage, Cassandra-backed scale, and Cloud pricing from roughly $200/month at low volume or $2.5-4.5K/month self-host. This 2026 comparison covers programming model, pricing, scale ceiling, and operational footprint.