Be Careful Using Zapier/Make + Airtable in Your Webflow Project: Limits and Solutions

Nicola ToledoNicola Toledo
Web App Integration
·10 min read

Many Webflow projects start with the same stack: Webflow CMS to display data, Airtable as a flexible database, and Zapier or Make to automate everything in between. It's fast to set up, requires no backend knowledge, and works well enough to launch and validate. But as your project grows, this combination creates compounding problems that are expensive to ignore and increasingly hard to work around. Here's exactly what you'll run into — with real user feedback to back it up — and how to fix it without starting over.

Zapier/Make + Airtable + Webflow CMS at a Glance

AirtableZapier / MakeWebflow CMS
Role in the stackDatabaseAutomation / sync layerFrontend content
Pricing modelPer seat + plan tierPer task / operationPer plan tier
Hard limit5 API req/sec per baseCosts grow with volume20,000 item cap
Breaks when> 5 concurrent users hit the APIAutomation volume scalesAirtable data exceeds the CMS cap

Problem 1: Airtable Rate Limits Freeze Your Site

Airtable caps its API at 5 requests per second per base — with no exceptions, regardless of plan.

"If you have 5 users [doing an action] at the same time they will hit the API limit. You'll get a 429 error code and have to wait 30 seconds for subsequent requests to go through." — r/Airtable

The 429 Too Many Requests error isn't just a developer problem — your users experience it as a page that stops loading for up to 30 seconds. On a normal day this might be rare. During a product launch, a social media mention, or a sales promotion, it becomes a reliability crisis.

This limit exists at the infrastructure level. It cannot be lifted by upgrading your plan — Enterprise customers are subject to it too. The only real solutions are to architect your requests to stay under 5/sec (complex, fragile, adds latency) or replace Airtable with a database that has no artificial rate limits.

Problem 2: Zapier and Make Costs Don't Scale

Zapier and Make are both billed per task (Zapier calls them "tasks", Make calls them "operations"). Each individual action — reading a record, writing a record, sending a notification, running a filter — counts as one billable unit.

"Expensive at scale. There's a really steep cost increase when you start automating a ton of stuff. Managing your data through a task-based tool does NOT scale." — r/zapier & r/automation

A real example: a Webflow project that syncs Airtable records to CMS items, handles form submissions, sends confirmation emails, and updates user data runs through 4–6 tasks per user interaction. At 1,000 interactions/month that's 4,000–6,000 tasks. At 10,000 interactions it's 40,000–60,000. The pricing tiers jump steeply and non-linearly.

What launches at $20–$50/month regularly reaches $300–$1,000/month after a growth phase — before a single new feature is added. Make is cheaper per operation than Zapier, but the same structural problem applies: volume drives cost, and volume is exactly what happens when your product succeeds.

Problem 3: Webflow CMS Limits Make Sync Errors Inevitable

Webflow CMS hard-caps content items at 2,000 on the CMS plan and 20,000 on Business. If Zapier or Make is syncing records from Airtable into Webflow CMS, hitting this ceiling creates a cascading failure.

"With Webflow you have a limit of 20,000 pages on the CMS plan. If your Airtable database that Zapier tries to sync exceeds this volume, Zapier will error." — r/nocode

When it happens: Airtable has more records than Webflow CMS allows, Zapier tries to create new CMS items, Webflow rejects them, the automation errors out, and your displayed data falls out of sync with your source of truth.

The options Webflow offers are to delete existing CMS content (losing data visibility on the site) or to upgrade to Enterprise — which starts at $15,000/year and can reach $60,000/year.

The Solution: Replace Zapier/Make + Airtable with Xano

The most direct fix is to stop using Airtable as a database and Zapier/Make as your automation layer, and replace both with Xano.

Why Xano Replaces Both Tools

Xano is a backend platform that combines what no-code stacks keep separate:

A real relational database (PostgreSQL)

PostgreSQL is one of the world's most battle-tested databases. No 5 req/sec throttle. No artificial record cap beyond your storage plan. Add indexes to any field and keep queries fast at millions of rows — something Airtable's spreadsheet model can't match at scale.

A visual backend logic builder

Xano's API builder lets you define business logic, data transforms, conditional flows, external API calls, webhooks, and background tasks — the same things you'd put in a Zapier or Make workflow — at a flat monthly cost with zero per-operation billing. Plans start at ~$85–$224/month.

Result: no rate limit errors, no compounding bills, no sync errors from hitting a CMS ceiling.

Where Wized Fits In

Wized is the frontend logic layer of the WWX stack. It runs in the browser and connects your Webflow frontend to Xano's API. It handles dynamic data rendering, authenticated user dashboards, conditional visibility, and real-time updates from Xano — all inside Webflow's existing HTML structure.

Important: Wized does not replace Zapier or Make. Zapier and Make are backend tools — they run server-side and trigger automations between third-party services. Wized is a client-side tool — it runs in the user's browser and communicates with your API. Those are fundamentally different roles.

In the WWX stack:

  • Xano = replaces Airtable (database) + Zapier/Make (backend automation logic)
  • Wized = replaces the need for Webflow CMS for private or dynamic data
  • Webflow CMS = keep it only for public, SEO-indexed pages

Case Study: TradingLab

TradingLab is one of Spain's leading online trading academies, with more than 3,300 students and growing.

Before: The No-Code MVP

They built their initial platform using Webflow CMS, Memberstack, Airtable, and Make — a typical no-code stack for a membership product. The setup was enough to validate the idea and onboard the first wave of students.

As the academy grew, the limits became impossible to ignore:

  • Webflow CMS API rate limits were directly impacting platform performance — students loading course pages occasionally hit delays caused by the CMS API being overloaded
  • Data sync between Airtable and Webflow via Make became unreliable — records would fall out of sync, requiring manual intervention to restore consistency
  • Adding new features (new course logic, quiz systems, progress tracking) required increasingly complex Make workflows that were difficult to debug, maintain, and extend

They evaluated standard LMS platforms like Teachable, but rejected them — they needed full design control, custom integrations, and a student experience that matched their brand. What they needed was a scalable backend, not a different SaaS constraint.

After: The WWX Stack

I built v2 of their academy starting from a fully designed Figma prototype of the student portal.

Xano as the backend: I built a PostgreSQL database structure to manage users, roles, courses, modules, lessons, progress tracking, quiz logic, and completion thresholds. Each entity has its own API endpoint, and business logic that previously lived in fragile Make workflows now runs reliably as Xano backend functions and triggers.

Memberstack kept for authentication: Rather than replacing their existing auth setup, I connected Memberstack directly to Xano via webhooks. When a student registers or upgrades their subscription, Memberstack notifies Xano, which handles all downstream logic — no more Airtable as the intermediary.

Wized for the frontend: Using Wized, I connected the Webflow frontend to Xano's API endpoints, transforming the static Figma design into a fully dynamic student portal where users can access courses, track progress, interact with lessons and quizzes, and see personalized dashboards — all without a single Zapier or Make task.

Results:

  • No more rate limit errors or sync failures
  • Reliable, real-time integrations via Xano triggers and webhooks
  • A backend that scales to tens of thousands of students without architectural changes
  • New features (quizzes, certificates, cohorts) can be added at the Xano level without touching Webflow CMS

The academy is now the core product of TradingLab's online business.

For the broader decision-making guide on when to move from no-code to low-code, see: No-Code vs Low-Code in 2026: When to Upgrade Your Webflow Stack →

Frequently Asked Questions

Can Xano replace Airtable?

Yes. Xano includes a full relational database (PostgreSQL) that stores any type and volume of structured data. Unlike Airtable, it has no API rate limits on paid plans and no per-record pricing at the entry level. It also supports proper relational modeling with foreign keys and joins — something Airtable's spreadsheet model doesn't handle well at scale. For Webflow projects using Airtable as a backend database, Xano is a direct and more scalable replacement.

Can Xano replace Zapier or Make?

Yes. Xano's visual API builder and background task runner let you define the same business logic you'd build in a Zapier or Make workflow — conditional flows, data transforms, external API calls, webhooks, scheduled jobs — at a flat monthly cost with no per-operation billing. The key difference: Xano logic runs as part of your own backend infrastructure, not as a third-party automation layer connecting external services.

Does Wized replace Zapier or Make?

No. Wized runs in the browser (client-side) and handles frontend interactions: fetching data from an API and rendering it inside Webflow. Zapier and Make run on the backend and trigger automations between external services. Those are fundamentally different roles. In the WWX stack, Xano handles all backend automation — Wized only makes API calls to Xano from the frontend.

What does migrating from Zapier + Airtable to Xano look like?

A typical migration involves four steps: (1) exporting your Airtable data and importing it into a Xano database with a properly normalized schema, (2) rebuilding your Zapier/Make automation logic as Xano API endpoints and background tasks, (3) updating your Webflow frontend to fetch data from Xano via Wized instead of Airtable directly, and (4) redirecting any external webhook triggers from Zapier to Xano endpoints. It's a meaningful time investment, but the resulting system is significantly more stable and predictable.

How much does Xano cost compared to Airtable + Zapier?

At scale, Xano is almost always cheaper. A mature Airtable team plan plus a Zapier Professional or Teams plan can cost $400–$1,500/month. Xano's paid plans start at ~$85/month flat with no per-operation or per-record fees. Wized also uses flat pricing. The upfront cost is developer time for setup — but the ongoing cost is fixed and predictable regardless of how much your product grows.

To Recap

Zapier/Make + Airtable + Webflow CMS is a valid starting point — not a permanent architecture.

The three limits you'll hit are: Airtable's 5 req/sec API cap that freezes your site under any real concurrent load, Zapier/Make per-task billing that compounds unpredictably as volume grows, and Webflow CMS's 20,000-item ceiling that turns sync into a data consistency problem.

All three are solved by replacing Airtable and Zapier/Make with Xano, and using Wized to connect your Webflow frontend to the new backend. The result is a flat-rate, scalable system that doesn't break under load — and doesn't require a $60,000/year Enterprise plan.

If you're already seeing these problems or want to get the architecture right from the start, the sooner you switch the less data and automation logic you'll need to migrate.

Nicola Toledo

Do you have a project in mind?

Let's see if I can help

Book a free call