惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
Recent Announcements
Recent Announcements
V
Visual Studio Blog
博客园 - 叶小钗
H
Help Net Security
aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
U
Unit 42
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
WordPress大学
WordPress大学
D
DataBreaches.Net
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
A
About on SuperTechFans
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
Microsoft Azure Blog
Microsoft Azure Blog
M
MIT News - Artificial intelligence

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Zapier Free Plan in 2026: What 100 Tasks Actually Buy You
TrackStack · 2026-05-18 · via DEV Community

I spent a month inside Zapier's free tier so you don't have to. Here are the actual numbers, where they bite, and the moment I switched to self-hosting n8n on a $6 VPS.

The hard limits, no marketing

Pulled straight from the Zapier docs (and tested against my own account):

Limit Value
Tasks / month 100
Steps per Zap 2 (1 trigger + 1 action)
Polling interval 15 minutes
Premium apps Locked (Salesforce, Stripe, etc.)
Webhooks by Zapier Locked (it's a "premium app")
Filters / Paths / Formatter Locked
Autoreplay on errors Not available
Users 1
Support Community forum only

A task is one successful action. Trigger checks don't count. Filters and Formatter wouldn't count either — except you can't use them.

What 100 tasks/month feels like

Quick math: if your Zap fires hourly, that's 24 × 30 = 720 tasks/month. Done in 4 days. If it fires on every new email — 50/day average — done in 2 days.

Realistic free-tier capacity:

  • 1 Zap firing 3x/day → 90 tasks/month ✓
  • 1 Zap firing on form submissions, ~3/day → 90 tasks/month ✓
  • 1 Zap firing on every Shopify order in a real store → blown by day 5 ✗

When you hit the cap, runs aren't lost — they're held, queued in your Zap History. They replay when the month resets. So for batchable, non-time-critical stuff, the limit is annoying but survivable. For real-time alerts, it's fatal.

The 2-step thing is the actual killer

People focus on the 100-task limit. The 2-step limit is worse.

Two steps means: one trigger + one action. No filter ("only continue if amount > $100"). No formatter ("convert timestamp to ISO"). No path ("if VIP customer, route to sales; else, ignore").

Real automations need conditionals. Without them you get this anti-pattern:

Typeform submission → Create HubSpot contact

Enter fullscreen mode Exit fullscreen mode

…where now every form submission creates a contact, including bots, duplicates, and the 3 internal team members testing the form. You can't filter them out in Zapier Free.

The "fix" is splitting logic into multiple Zaps, but each runs separately and you can't share state — you're just paying tasks twice and getting worse logic.

15-minute polling, in case you forgot what slow feels like

Polling triggers (most non-instant apps) check for new data every 15 minutes on Free. Pro drops to 2 minutes.

What this means in practice:

9:00 — lead fills out form
9:14 — Zapier checks, sees lead, runs Zap
9:14 — Slack alert fires

Enter fullscreen mode Exit fullscreen mode

A 14-minute delay for a "real-time" alert. If you're competing for response time on leads (and you are), you've already lost.

Instant triggers (Stripe, Shopify, GitHub, a few others) bypass polling — they push to Zapier, which pushes to you. But most apps don't expose instant triggers on Free.

What "premium apps" actually locks out

Zapier's premium-app list includes: Salesforce, QuickBooks, ShipStation, PayPal, Magento, Microsoft Dynamics, Webhooks by Zapier, certain Stripe triggers, and a long tail of others.

The webhooks one is the kicker. If your stack relies on receiving webhook events from any service that doesn't have a native Zapier integration — and most niche/regional services don't — you literally cannot build the integration on Free. You need Pro.

Free vs Pro: the real cost gap

In 2026, there is no "Starter" plan anymore. The jump is Free → Pro, and Pro is $19.99/month billed annually or $29.99 monthly. That gets you 750 tasks, multi-step Zaps, premium apps, webhooks, filters, paths, formatter, 2-minute polling, autoreplay. Team is $103.50/mo for 2,000 tasks and 25 seats.

If you actually need automation that works, Pro is the floor. If you don't actually need it, Free is fine forever.

The "screw it, I'll host it myself" option

If you're reading dev.to, you probably know n8n — open-source, self-hostable, no task counter, no two-step limit, real webhooks, code nodes. Here's the entire setup:

# docker-compose.yml
version: "3.8"

services:
  n8n:
    image: docker.n8n.io/n8nio/n8n:latest
    restart: unless-stopped
    ports:
      - "5678:5678"
    environment:
      - N8N_HOST=n8n.yourdomain.com
      - N8N_PROTOCOL=https
      - N8N_PORT=5678
      - WEBHOOK_URL=https://n8n.yourdomain.com/
      - GENERIC_TIMEZONE=Europe/Kyiv
      - N8N_BASIC_AUTH_ACTIVE=true
      - N8N_BASIC_AUTH_USER=admin
      - N8N_BASIC_AUTH_PASSWORD=${N8N_PASSWORD}
      - DB_TYPE=postgresdb
      - DB_POSTGRESDB_HOST=postgres
      - DB_POSTGRESDB_DATABASE=n8n
      - DB_POSTGRESDB_USER=n8n
      - DB_POSTGRESDB_PASSWORD=${POSTGRES_PASSWORD}
    volumes:
      - n8n_data:/home/node/.n8n
    depends_on:
      - postgres

  postgres:
    image: postgres:16-alpine
    restart: unless-stopped
    environment:
      - POSTGRES_DB=n8n
      - POSTGRES_USER=n8n
      - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
    volumes:
      - postgres_data:/var/lib/postgresql/data

volumes:
  n8n_data:
  postgres_data:

Enter fullscreen mode Exit fullscreen mode

Drop this on a $6/month Hetzner CX22 (or any VPS), point a subdomain at it, slap Caddy or Traefik in front for TLS, and you've got unlimited everything. The real cost is operational: you maintain it, back it up, update it. If you already run a VPS, this is a free upgrade. If you don't, the maintenance overhead probably isn't worth saving $20/month.

When Make's free tier beats Zapier's

If self-hosting feels like too much, Make.com's free plan is the obvious migration:

  • 1,000 operations/month (10× Zapier)
  • Unlimited scenarios
  • Multi-step workflows
  • Filters, routers, aggregators
  • Real webhooks on free
  • Minimum 15-minute scheduling (same as Zapier Free)

The cost is a UI that's more powerful and more confusing. Zapier optimised for "anyone can use it"; Make optimised for "anyone who's willing to learn can do anything." If you're a dev, Make's editor feels like home within an hour.

The decision tree

Are you just testing automation as a concept?
├── Yes → Stay on Zapier Free, set a 2-week timer, re-evaluate
└── No  → Do you already run a VPS?
         ├── Yes → Self-host n8n
         └── No  → Are most of your apps in Zapier's premium list?
                  ├── Yes → Zapier Pro ($19.99 annual)
                  └── No  → Make.com free tier

Enter fullscreen mode Exit fullscreen mode

Most devs I know end up at n8n or Make. The Zapier Free → Pro path makes sense almost exclusively if your team already standardised on Zapier and your accounts are deeply integrated. For greenfield, the alternatives win on price/feature ratio.

When Free is genuinely enough

I don't want to sound like "always self-host." Zapier Free works for:

  • Personal triage Zaps. Starred Gmail → Todoist task. Maybe 1 task/day.
  • Form backup. Typeform → Google Sheet. Under 100 submissions/month.
  • Side-project notifications. New Stripe customer → Slack DM, if you're under 100/month and Stripe's instant trigger covers you.
  • Sandbox testing. Want to demo automation to a non-technical colleague? Zapier's UX is the best teaching tool.

Anything beyond that — anything with logic, premium apps, real volume, real-time needs — you'll outgrow it within the first month.

TL;DR

100 tasks/month + 2-step limit + 15-minute polling + no webhooks = a generous demo, not a production tool. For real work in 2026: Make.com Free if you want to stay no-code, n8n self-hosted if you have a VPS, Zapier Pro if your team is already locked in. The "Starter" tier is gone; the Free→Pro jump is the only path inside Zapier itself.


Originally published on trackstack.tech with a fuller decision framework and FAQ.