FAILURE PROTOCOL • MAKE.COM

Make.com 429 Rate Limit Fix: Circuit Breaker Protocol

Make.com returns a 429 from three different layers and only one of them is your scenario's fault. Here is how to tell them apart, what Make already…

By Alex, Principal AI Infrastructure Architect | Updated September 2026 | 19 min read
THE VERDICT
A 429 from Make.com is a symptom, not a diagnosis. Three different layers can produce it: Make's own organization API limit, a connected app's own limit, or a burst your scenario created on its own. Only the third one is fixed by editing the scenario, and adding Sleep modules everywhere is how teams turn a five-minute outage into a three-hour one. Classify the error first, then either let Make's built-in backoff do its job or bolt on a Data Store circuit breaker. The breaker is what stops a dead third-party API from draining your monthly operations while every retry fails in the same way.

TL;DR

  • A RateLimitError in Make is HTTP 429. It can come from Make's org API limit, a connected app's limit, or your own burst pattern. Identify which layer before you touch anything.
  • Make's published org API limits are per plan: Core 60 requests per minute, Pro 120, Teams 240, Enterprise 1,000. Exceeding them returns Requests limit for organization exceeded, please try again later.
  • With no error handler attached, Make already retries rate-limit failures. Incomplete executions must be enabled for the retry to keep your data; it is off by default.
  • The automatic backoff for RateLimitError, ConnectionError, and ModuleTimeoutError runs 8 attempts over roughly 7 hours 51 minutes. You do not have to build that yourself.
  • One app counts requests against its rate limit across every scenario that uses it, not per scenario. Two "safe" scenarios can jointly trip a 429.
  • For a service that is genuinely down, a Data Store flag with a short TTL is the control that saves real money. Sleep delays retries; the breaker removes them.

Make.com 429s come from three different layers

Engineers call all of them "the Make rate limit error" and then chase the wrong fix. The three layers behave differently, and the message rarely tells you which one fired.

The first layer is Make's own API. Every request you send to Make — organization calls, admin automation, anything hitting api.make.com — is counted against your plan's organization limit. Hit it and the response is a 429 with a specific sentence about your organization.

The second layer lives in the connected app. Google Sheets, Airtable, OpenAI, Slack — each has its own quota, and Make's error text usually names the provider or uses wording like "too many requests". Make counts nothing here. Your plan has no bearing on it, and upgrading Make will not help.

The third layer is your own design. Instant triggers fire per event, iterators fan a bundle into hundreds of operations, and pagination loops run until a page is empty. Total daily volume can look modest while a single ten-second window spikes past a limit nobody is measuring.

Make's HTTP handling draws the boundary for you: any response in the 400–599 range is treated as an error, and a rate-limit response is classified as one that the platform retries on its own. Everything below assumes that default. The question is what happens around it.

If your 429s are landing on the cost side instead — overage bills rather than hard failures — the operation math is a different article, and we walked it through in the Make.com overage pricing breakdown.

The three layers, side by side

Layer Who enforces it Typical window Tell in the error Control that works
Make organization API Make Per minute, by plan "organization exceeded" Lower API call rate; raise plan
Connected app The third-party API Provider-specific Provider name or "too many requests" Spacing, batching, quota increase
Scenario burst Your own design Seconds Same app failing across scenarios Runs-per-minute cap, batching, breaker

Read the failing module first. If the error text mentions your organization, you are in layer one and the scenario is almost never the cause. If it names Sheets, Airtable, or a model provider, you are in layer two and the fix is pacing. If the failing module is your own HTTP call and the same app fails from several scenarios at once, you built layer three.

The org API numbers Make publishes

Make documents its organization API limits by plan. These are requests per minute against the Make API, not operations inside scenarios.

Plan Requests per minute
Core 60
Pro 120
Teams 240
Enterprise 1,000

Exceed the limit and you get error 429 with the message Requests limit for organization exceeded, please try again later.

You can read your own ceiling instead of guessing it. Call GET {base-url}/organizations/{organizationId} and the license object in the response carries an apiLimit property with your organization's rate limit. Pull that once, store it, and your monitoring can compare it to observed traffic rather than to a number from a blog post.

Keep the two ceilings separate in your head. The organization limit governs calls into Make. The app limits behind your modules govern calls out. A 429 on the second layer is invisible to the first, which is why a plan upgrade so often changes nothing.

What Make already retries for you

This is the part most teams rebuild by hand when they do not need to. Make's behaviour on a rate-limit error with no error handler attached depends on two switches: whether the scenario is scheduled or instant, and whether incomplete executions are enabled.

Scheduling Incomplete executions OFF Incomplete executions ON
Scheduled Pauses the next run for 20 minutes; does not rerun the incomplete execution Pauses the next run for 20 minutes; reruns the incomplete execution with exponential backoff
Instant Reruns the incomplete execution from its start with exponential backoff Reruns the incomplete execution with exponential backoff

The single most valuable setting here is Store incomplete executions in Scenario settings, and it ships disabled. Turn it on and a failed run is kept with its input data instead of vanishing. Leave it off and a 429 can cost you the bundle, permanently. Instant scenarios retry either way, but "retry" only means something if the data still exists.

The automatic backoff schedule, in full

Rate limit, connection, and module-timeout errors get retried automatically. The schedule is fixed, and it is longer than most people assume.

Attempt Gap after previous Time after the original run
1 1 minute 1 minute
2 10 minutes 11 minutes
3 10 minutes 21 minutes
4 30 minutes 51 minutes
5 30 minutes 1 h 21 m
6 30 minutes 1 h 51 m
7 3 hours 4 h 51 m
8 3 hours 7 h 51 m

Eight attempts, spread over almost eight hours. Two limits shape how that behaves in practice. Make runs a maximum of three incomplete-execution retries in parallel per scenario, batching the rest as the previous batch finishes, so a backlog of fifty failures drains slowly. And a retry will not start while the original scenario is already running.

The same page also covers the Retry error handler when you enable automatic run completion: the default is 3 attempts at 15-minute intervals, and both numbers are adjustable.

The five error handler directives in 2026

Make's current documentation names five directives: Skip, Retry, Resume, Commit, and Rollback. Older tutorials use the retired names Ignore and Break, so match your reading to what the builder shows you today.

The directive decides what the platform does with the failure. Getting it wrong is worse than having no handler, because a handler that swallows a 429 quietly converts a visible outage into missing records.

Map the directive to the status, not to the mood of the moment. A 429 wants Retry. A persistent 4xx wants Skip or Rollback plus an alert, because retrying bad data just fails again more slowly. A 5xx wants the circuit breaker below.

Rate limit headroom calculator

Plan limits mean nothing without your own traffic next to them. Enter your ceiling and your peak, and see how much room you actually have.

Rate limit headroom calculator

Enter the requests-per-minute ceiling you are measuring against (Make org limit, or an app's published limit) and your own peak. The headroom target of 80% is our own operating rule, not a vendor figure: it leaves room for retries and for other scenarios sharing the same envelope.

Peak utilization
Safe spacing per request
Safe requests / minute (80%)
Max runs to start per minute
Verdict

A circuit breaker you can build in four modules

The automatic backoff handles a blip. It does not handle a service that is down for two hours. In that case every scheduled run fires, fails, gets stored, and consumes operations while nothing succeeds. A circuit breaker cuts that off at the source.

The shape is four pieces, and you can build it with the modules you already have.

  1. A Data Store key as the breaker state. One key, something like svc_openai_down, holding a timestamp and a boolean. Make's Data Store gives you a place to keep it between runs.
  2. A check before the request. First module of the branch: read the key. Filter on it. If the flag is set and not expired, skip the call and route the bundle to a queue or a log instead of firing a doomed request.
  3. A set-on-failure path. Wire the failing module's Retry handler so that its final failure also writes svc_openai_down = true with a 10-minute expiry. Ten minutes is a starting value; match it to how long the provider's own incidents usually last.
  4. A health check that clears it. A small scheduled scenario (once every five or ten minutes) makes one cheap call to the provider. Success clears the flag and traffic resumes; failure extends it. The breaker closes itself.

The breaker is worth building because it changes the cost model, not just the error rate. During a two-hour outage, an unbroken scenario with a one-minute schedule attempts 120 runs, each spending operations on a call that fails identically. With the flag set, most of those runs skip the call entirely. You trade a small amount of latency for a large cut in wasted operations — the same logic our Make vs Zapier cost analysis applies at the execution level, and the hybrid orchestration blueprint shows where a self-hosted worker cluster takes over when a managed ceiling becomes the bottleneck.

If you would rather not run a breaker at all, the honest alternative is the self-hosted route: a queue-mode worker cluster absorbs bursts without a per-minute org ceiling. We documented that path in the n8n queue mode setup.

The controls that actually move the 429 rate

Five controls do the work. Reach for them in this order.

One rule ties them together: an app counts its requests against the rate limit across every scenario that uses it. If three scenarios all call the same app, they share one envelope. Two individually "safe" scenarios can trip a 429 together, and neither one looks guilty in isolation. Check the app across your whole workspace before you blame a single scenario.

Failure modes we have hit

  1. Retrying a provider that is down. A scenario with a Retry handler kept firing at a dead API for two hours and burned a month of operations on identical failures. The breaker exists because of this one.
  2. Incomplete executions left off. The default. The scenario retried on schedule, but the bundle was gone, so "retry" retried nothing. Turn the setting on before you need it, not after.
  3. Blaming Make for a third-party limit. The error named the app, the team upgraded the Make plan, and nothing changed. The limit was the provider's, and the provider did not care about the invoice.
  4. Two scenarios, one shared envelope. Each was tuned to half the app's limit. Together they exceeded it. The fix was a shared Data Store counter, not more spacing.
  5. Sleep everywhere. Fifty records at a two-second delay turned a forty-second job into a sixteen-minute one, and the 429s continued because the peak was the problem, not the average.

When to raise the plan instead of engineering around it

Engineering around a limit is worth it when the burst is yours and the ceiling is Make's. A scenario rate limit plus batching fixes that class permanently, and it is free.

Raise the plan when layer one is genuinely saturated and the traffic is legitimate — Core's 60 requests per minute is a low ceiling for an admin-heavy workspace, and jumping to Pro at 120 or Teams at 240 is cheaper than the engineer hours you would spend pacing around it.

And when the bottleneck is a third-party app's limit that no plan change touches, neither lever helps. The answer is either a queue that smooths demand against a provider that cannot absorb it, or a different provider. That decision is about architecture, and it is worth making explicitly rather than arriving at it one 429 at a time.

Ship the breaker before you need it

Rate-limit failures are boring right up to the moment a provider goes down and your workspace spends the afternoon failing. The cheap sequence: enable Store incomplete executions today, confirm your org apiLimit so you are measuring against a real number, cap instant triggers with the runs-per-minute field, and add the Data Store breaker to the one or two modules that call a third party you cannot survive without. That is an afternoon of work that pays for itself on the first outage.

FAQ

Deploy this stack in production

Every config, default, and failure mode in this guide comes from live deployment, not documentation. Our Make.com playbook covers the orchestration patterns end to end.

Get the Make.com Automation Playbook →

Download this guide’s assets

Get the configuration and data files referenced in this guide. Subscribe and we’ll send the bundle to your inbox.

Get the bundle →
What does a 429 mean in Make.com?

A 429 is the HTTP Too Many Requests status, and Make surfaces it as a RateLimitError. It can come from Make's organization API limit, from a connected app's own limit, or from a burst your scenario generated. The error text is the fastest way to tell which: wording about your organization points at Make's limit, a provider name points at the app.

What are Make.com's API rate limits by plan?

Make documents four tiers for the Make API, measured in requests per minute: Core 60, Pro 120, Teams 240, Enterprise 1,000. Exceeding them returns a 429 with the message Requests limit for organization exceeded, please try again later. You can read your own ceiling from the apiLimit property in the license object returned by GET {base-url}/organizations/{organizationId}.

Does Make retry rate limit errors automatically?

Yes. With no error handler attached, Make retries RateLimitError, ConnectionError, and ModuleTimeoutError on a fixed exponential backoff: 8 attempts at 1, 10, 10, 30, 30, 30, 180, and 180 minutes, finishing about 7 hours 51 minutes after the original run. Scheduled scenarios pause the next run for 20 minutes as well. Enabling Store incomplete executions is what keeps the data available for that retry.

How do I stop a scenario from burning operations while an API is down?

Use a circuit breaker rather than a delay. Keep a flag in a Data Store, check it before the failing call, set it when the call fails for good, and let a small health-check scenario clear it once the provider responds again. A 10-minute expiry is a reasonable start. The flag makes most runs skip the doomed call entirely instead of paying for a request that fails the same way every time.

Why do two scenarios each under the limit still trigger a 429?

Because an app counts requests against its rate limit across every scenario that uses it, not per scenario. If two scenarios each use half the app's allowance they can collectively exceed it at peak. Either stagger their scheduling, share a counter in a Data Store, or route both through a single scenario that paces the calls.

Should I use Sleep or the Retry error handler for 429s?

Start with Retry, because it is built in, stores the incomplete execution, and follows Make's own backoff schedule. Add a Sleep module only when you need to smooth a rate your own burst created and batching cannot fix it. Make notes that Sleep often delays the problem rather than resolving it, and the module caps a single delay at 300 seconds.

Engineering Transparency: Every behavioural detail in this article — the plan-level API limits, the fixed retry backoff schedule, the two-by-two response table, the five error handler directive names, and the Sleep ceiling — is taken from Make's own documentation (the API rate-limiting page, the rate-limit error guide, the automatic retry page, and the error handlers reference), checked in September 2026, and Make changes these pages without notice, so verify against the live docs before you build on them. The 80% headroom target in the calculator is our own operating rule and is not a vendor figure. The breaker pattern is the shape we run in production; the four steps describe the architecture rather than a downloaded file, and no scenario blueprint is bundled with this article. Make.com is an approved affiliate partner of Wenboom: if you subscribe through a link on this page we may earn a commission at no added cost to you, and the CTA below points to our Make.com playbook because it is the tool referenced throughout. Authored by Alex, Principal AI Infrastructure Architect at Wenboom. See our Terms of Service for the full disclaimer.

Related Cluster Intelligence