All articles
WhatsApp Business API

WhatsApp Cloud API Rate Limits in India: 2026 Guide

WhatsApp Cloud API rate limits cap how many Graph API calls and messages per second you can send. Hit one and Meta returns 130429, 131056 or 368 errors.

RichAutomate
10 min read 2 views
WhatsApp Cloud API Rate Limits in India: 2026 Guide

WhatsApp Cloud API rate limits are hard ceilings on how fast your systems may call Meta's Graph API and how many messages per second Meta will accept from a phone number. Cross one and Meta simply stops accepting requests: you get an HTTP 429 response carrying an error code such as 130429 (rate limit hit), 131056 (pair rate limit) or 368 (temporary block), and your send queue backs up until the window resets.

For Indian teams this stops being theory on the first big festive send. A Diwali broadcast, a market-open OTP burst or a flash sale that lands during a cricket match compresses a week of normal traffic into twenty minutes, and the ceiling that breaks first is almost never the one people planned for. This guide covers the four separate limits that apply, the error codes each one produces, how throughput works, and the queue design that keeps a burst moving instead of collapsing.

Key Takeaways

  • Four different ceilings apply at once: app-level Graph API usage, per-WABA business use case limits, per-number messaging throughput, and pair or policy-level blocks.
  • Meta's published Cloud API default throughput is 80 messages per second of combined sending and receiving, with a documented upgrade path for higher volume senders.
  • Every Graph API response carries usage headers. Alert at 70 to 80 percent of capacity instead of waiting for the 429.
  • 130429 is retryable with exponential backoff and jitter. 131056 and 368 are not: retrying them makes the block worse.
  • Plain arithmetic beats optimism. A 400,000 contact broadcast at 80 messages per second needs roughly 83 minutes of pure send time before any retry.
  • Messaging limits and quality rating are a different system from API rate limits. Fixing one does not fix the other.

What counts as a rate limit on WhatsApp Cloud API

Four independent ceilings govern a Cloud API integration, and each one fails differently. Treating them as a single limit is the most common reason a send pipeline behaves unpredictably under load.

App-level Graph API limits apply to your Meta app as a whole, across every call it makes: template reads, media uploads, phone number lookups, message sends. They are measured over a rolling window and reported in the X-App-Usage response header.

Business use case (BUC) limits apply per WhatsApp Business Account and per use case. These are the limits that bite when an ops dashboard polls template status every few seconds for forty tenants, or when a migration script walks every phone number on the account. They are reported in the X-Business-Use-Case-Usage header.

Messaging throughput is a per-second ceiling on the messages a phone number can send and receive. This is the limit that shapes how long a campaign takes, and it is the one you can request an upgrade for.

Pair and policy ceilings sit on top of everything else. Meta restricts how many messages one sender may push to one recipient in a short window, and applies temporary blocks when traffic patterns look abusive. These are protective, not capacity based, so buying more throughput does nothing for them.

Messaging limits are not API rate limits

Messaging limits, the 250, 1,000, 10,000 and 100,000 unique-customer-per-24-hours tiers tied to quality rating, are a completely separate system from API rate limits. Messaging limits count distinct people you start conversations with in a rolling day. Rate limits count requests and messages per second or per hour, regardless of who they go to. You can sit comfortably inside a 100,000 customer tier and still be throttled at 11 in the morning because your workers opened too many parallel connections. The reverse also happens. If you need the tier side of the story, our WhatsApp Business API guides cover it separately. The rest of this article stays on the API side.

The rate limit errors Indian senders actually see

Every ceiling produces a distinct error code, and the correct response differs sharply between them. Retrying a pair-level error the same way you retry a throughput error turns a two minute delay into a multi-hour block.

CodeWhat Meta is telling youTypical Indian triggerCorrect action
HTTP 429Generic too-many-requests response wrapping one of the codes belowAny burst: read the body, never the status aloneParse the error code, then branch
4Application request limit reached, app-wideOne noisy tenant or cron starving every other tenant on a shared appBack off globally, add per-tenant concurrency caps
80007WhatsApp Business Account rate limit reachedDashboards polling template and phone number endpoints in a loopCache metadata, poll on minutes not seconds
130429Cloud API message throughput rate limit hitDiwali or Navratri broadcast fired without pacingExponential backoff with jitter, re-queue the message
131048Spam rate limit hit, sending restricted on quality signalsCold marketing list with rising block reportsPause the campaign, review list quality and opt-in
131056Pair rate limit: too many messages to one recipient too quicklyOTP resend loops on flaky tier-2 and tier-3 connectionsDo not retry that pair, apply a cooldown
368Temporarily blocked for policy violationsSustained retry storms against blocks already returnedStop sending on that number, fix the cause, wait out the block
613Business management API calls exceeded the rate limitBulk template creation or onboarding automationSerialise the job, add a token bucket in front of it

One operational rule covers most of this: classify before you retry. A single retry policy applied to every non-200 response is the fastest route from a recoverable throttle to a temporary block.

Throughput, MPS and when to request an upgrade

Meta's documented default for Cloud API is 80 messages per second of combined sending and receiving per phone number, with higher throughput available on request for high volume senders. Confirm the current published figure in Meta's Cloud API throughput documentation before you size a campaign, because this number has moved more than once and applies per number, not per business account.

The planning question is not what the ceiling is but how long your burst takes at that ceiling. The table below uses plain division, no vendor claims, just the arithmetic every send plan should start with.

ScenarioVolume and windowSustained rate neededSizing note
D2C Diwali broadcast400,000 messages, same hourAbout 111 per secondAbove the 80 default. At 80 it runs roughly 83 minutes
Overnight festive drip50,000 messages over 6 hoursAbout 2.3 per secondComfortable. Pace it and forget it
BFSI market-open OTP burst12,000 authentications in 10 minutes20 per second sustainedFits, but reserve headroom for retries and inbound
Flash sale during a cricket match80,000 sends plus heavy inbound repliesPeak well above the send rate aloneInbound counts toward combined throughput
Tier-2 and tier-3 rollout25,000 onboarding messages per dayUnder 1 per secondThroughput is never the constraint here

Two details catch teams out. First, inbound messages count toward the combined figure, so a campaign that draws a high reply rate consumes throughput twice. Second, Meta may pace marketing template delivery for its own quality reasons even when you are under your ceiling, so an accepted API response is not a delivery guarantee. Plan schedules with slack rather than aiming to finish exactly at the limit. If you are budgeting a festive burst, the WhatsApp API cost calculator gives you the spend side of the same plan.

Stop overpaying on WhatsApp

Get a 1-minute BSP audit on WhatsApp

Drop your WhatsApp number — we line-item your current invoice against Meta India rates in under 60 seconds. India-hosted, DPDP-compliant.

DPDP-compliant · India-hosted · 1-min reply

Reading Meta's 80 percent capacity warning before it bites

Graph API responses carry your current usage in headers, which means you can see a throttle coming rather than discovering it through failed sends. The X-App-Usage header reports call count, CPU time and total time as percentages of your app's allowance. The X-Business-Use-Case-Usage header reports the same per WABA and adds estimated_time_to_regain_access once you are restricted, expressed in minutes.

Log these on every response and act on thresholds instead of failures. A practical pattern: at 70 percent, halve the rate of non-urgent background jobs such as analytics syncs and template polling. At 80 percent, pause background work entirely and reserve capacity for transactional sends, since an OTP that arrives four minutes late is a lost login while a delayed campaign message is merely a delayed campaign message. At 90 percent, stop all non-transactional traffic on that account until usage decays.

The 80 percent mark matters because usage percentages are computed over a rolling window, so by the time a header shows 95 percent you have already committed the calls that will push you over. Alerting at 80 gives your queue time to drain. Teams running many brands on one app need this most, because a single tenant's bulk job consumes an allowance everyone shares. Per-tenant caps in the WhatsApp automation platform layer prevent one noisy account from throttling the rest.

Backoff design that survives a Diwali burst

The retry strategy decides whether a throttle costs you two minutes or two hours. Fixed-interval retries are the worst option under load because every worker that failed at the same moment retries at the same moment, producing a synchronised second wave that trips the limit again. This is the thundering herd, and festive traffic is where it shows up.

StrategyBehaviour on 429Best forFailure mode
Fixed interval retryRetry every n seconds, unchangedNothing at scaleSynchronised herd, repeated 130429
Exponential backoffDoubles the wait each attemptSmall worker poolsWorkers still retry in lockstep
Exponential backoff with full jitterRandom wait between zero and the current ceilingDefault choice for campaign queuesNeeds a hard attempt cap and a dead-letter queue
Token bucket pacingShapes traffic before it leaves your serversKnown volume, known windowBucket must be sized per phone number
Circuit breakerTrips after repeated failures, drains slowlyPair limits and policy blocksNeeds manual review before it closes again

Combine two of them. Pace outbound traffic with a token bucket so you rarely see a 429 at all, then use exponential backoff with full jitter for the ones that slip through, capped at five or six attempts before the message moves to a dead-letter queue for human review. Make every send idempotent with your own message key so a retry after an ambiguous timeout cannot deliver twice, and shard the bucket per phone number rather than per tenant, because the throughput ceiling is a property of the number.

Pair rate limits, OTP retries and tier-2 rollouts

Error 131056 means too many messages went from your number to one recipient in too short a window, and it is the one limit that retry logic reliably makes worse. It shows up most in authentication flows, where a user on a patchy tier-2 or tier-3 connection taps resend four times in thirty seconds while your backend also retries the send it believes failed.

The fix is on your side, not Meta's. Enforce a cooldown per sender and recipient pair, typically 30 to 60 seconds for OTPs, and show the remaining seconds in your app so the user stops tapping. Deduplicate by pair and purpose so two services cannot independently send the same code. Treat 131056 as terminal for that attempt: mark it, surface a clear message, and let the user request again after the cooldown rather than queueing an automatic retry.

The same discipline protects support flows, where an agent tool and an automation can both reply to one customer within seconds. BFSI, lending and logistics teams running high-frequency transactional messaging feel this earliest, which is why per-pair throttling belongs in the platform rather than in each integration. Our WhatsApp API use cases pages walk through those flows by industry.

A festive-season rate limit readiness checklist

Work through this two weeks before your peak, not on the morning of the send.

  • Do the arithmetic first: total messages divided by your throughput equals minimum send minutes. If the answer does not fit the window, split the audience or request higher throughput early, since upgrades are not instant.
  • Get templates approved well ahead. A rejection on the day forces a resubmission and a compressed send window, which is what causes the rush that trips limits.
  • Log X-App-Usage and X-Business-Use-Case-Usage on every call and chart them. You cannot tune what you cannot see.
  • Alert at 70 and 80 percent with different severities, and route the 80 percent alert to whoever can pause a campaign.
  • Cap concurrency per phone number and per tenant, and keep a separate lane for OTP and transactional traffic so campaigns cannot starve it.
  • Classify errors explicitly. Retry 130429 with jitter, never auto-retry 131056, and halt the number on 368.
  • Keep a dead-letter queue with replay so a throttled batch is recoverable rather than lost.
  • Freeze deploys during the send window. A worker restart mid-campaign is the classic source of duplicate sends and a self-inflicted burst.
  • Stagger campaigns across numbers or start times. Two teams firing at the same hour on the same WABA is an avoidable collision.

Build for the throttle, not around it

Rate limits are not an obstacle to work past, they are the operating envelope of the channel, and pipelines designed with pacing, jitter and error classification from the start simply do not see most of these errors in production. The cost side is worth keeping in view too: throttled and retried sends still consume the same per-message economics, which on usage-only WhatsApp API pricing means ₹0 setup, ₹0 monthly floor, and per-message charges of ₹0.10 on Client Pay with Meta billed directly, or ₹1.20 for marketing and ₹0.30 for utility and authentication on SaaS Pay. Duplicate sends caused by careless retries are paid for twice.

If you would rather not build queue pacing, per-pair cooldowns and usage-header monitoring yourself, start a 14-day free trial with 100 credits and test a paced festive send against your own volumes before the season starts.

Ready to ship this?

Get the full migration playbook on WhatsApp

A founder-led 1-minute reply with the migration steps, template approval timeline, and a 14-day pilot offer. DPDP-compliant. India-hosted. No spam.

DPDP-compliant · India-hosted · 1-min reply
Tagged
whatsapp cloud apirate limitsthrottlingerror 130429api throughputfestive campaignsindia
Written by
RichAutomate
Editorial team at RichAutomate. We build the WhatsApp Business automation platform Indian D2C brands, fintechs, and agencies use to ship campaigns and flows on the official Meta Cloud API.
FAQ

Frequently asked questions

What are WhatsApp Cloud API rate limits?
They are ceilings on how fast your systems may call Meta's Graph API and how many messages per second a phone number can send and receive. Four apply at once: app-level Graph API usage, per-WABA business use case limits, per-number messaging throughput, and pair or policy-level blocks. Crossing any of them returns an HTTP 429 response with a specific error code rather than delivering your message.
What does error 130429 mean and how should I handle it?
Error 130429 means the Cloud API message throughput rate limit was hit, so Meta rejected the request instead of queueing it. It is retryable. Re-queue the message and retry with exponential backoff plus full jitter, capped at around five attempts before the message moves to a dead-letter queue. Better still, pace outbound traffic with a token bucket so the limit is rarely reached in the first place.
How many messages per second can WhatsApp Cloud API send?
Meta's documented default is 80 messages per second of combined sending and receiving per phone number, with a higher throughput upgrade path for high volume senders. Check Meta's current Cloud API throughput documentation before sizing a campaign, because the figure has changed more than once. At 80 per second, a 400,000 message broadcast needs roughly 83 minutes of pure send time before any retries.
Are messaging limits the same as API rate limits?
No. Messaging limits are the 250, 1,000, 10,000 and 100,000 unique-customer-per-24-hours tiers tied to quality rating, and they count distinct people you start conversations with. API rate limits count requests and messages per second or per hour regardless of recipient. You can be well inside your messaging tier and still be throttled, and improving quality rating does nothing for an API throughput ceiling.
Why do OTP messages fail with error 131056?
131056 is the pair rate limit: too many messages went from your number to one recipient in a short window. It is common when a user on a weak connection taps resend repeatedly while your backend also retries. Do not auto-retry that pair. Enforce a 30 to 60 second cooldown per sender and recipient pair, deduplicate resends across services, and show the remaining cooldown in your app.
RichAutomate · WhatsApp BSP for India 2026

Ship WhatsApp campaigns + flows on a transparent, compliance-ready BSP.

₹0 platform fee. DPDP audit log included. Visual flow builder. Multi-tenant from day one.

Start free trial
Want this for your brand?

Get a free 24-hour BSP audit

Send us your last invoice. We line-item it against Meta's published rates and benchmark against three alternatives.

Limited Spots Available

Get a Free
Automation Audit

Stop leaving revenue on the table. Get a custom roadmap to automate your growth.

Secure & Confidential

Continue reading

All articles
WhatsApp Business API

Use Existing WhatsApp Number for API? India 2026 Guide

Yes, you can move your existing WhatsApp number to the Business API, but you must delete the old account first and chat history will not transfer. Full 2026 steps.

Read article
WhatsApp Business API

Multiple Numbers on One WhatsApp API Account 2026

Yes — a verified Meta Business account can hold up to 20 WhatsApp API numbers, one per brand or department. How multi-number WhatsApp API setup works in India 2026.

Read article
WhatsApp Business API

WhatsApp Business API Without a Website? 2026 India

Yes — you can get the WhatsApp Business API without a website. You need a verified business, a valid number and documents, not a live site. Here is the 2026 reality.

Read article
WhatsApp Business API

WhatsApp Business API Cost Per Month India 2026

WhatsApp Business API can cost Rs 0/month in software — you pay only Meta's per-message charge plus GST. Real 2026 monthly cost breakdown for Indian SMEs.

Read article
WhatsApp API

WhatsApp Cloud API vs On-Premise India 2026: Migration Guide

On-Premise is fully sunset — Cloud API is the only choice in 2026. Go live in hours via Embedded Signup, ₹0 infra, plus a 5-step migration playbook.

Read article
Guide

Best WhatsApp API for Corporate Gifting India 2026

Best WhatsApp Business API for corporate gifting companies, festive hamper makers, promotional-products suppliers, employee-gifting vendors and gifting e-tailers in India 2026: an honest guide to picking a provider across the gifting sales cycle — RFQ intake, catalog and lookbook sharing, quotation and sample approval, Diwali and Rakhi campaign broadcasts, order and dispatch updates, payment links and annual repeat-client nurture. Rs0 platform fee, flat per-message cost, native Flows, a shared sales-desk inbox, a data note, and a who-fits-which call.

Read article