Is the WhatsApp API Free? What Is Free and What Is Not in 2026

WhatsApp API Pricing

Is the WhatsApp API Gratis? What Is Free and What Is Not in 2026

Short answer: no, not entirely. Meta has billed most WhatsApp Business Platform messages per message since July 1, 2025, but a specific list of message types, windows and limits genuinely cost nothing. This page lists exactly what is free on the WhatsApp API in 2026, what still costs money, and what changes on October 1.
7-day free trial on Unipile, no credit card required
Not billed
Inside the service window
whatsapp-webhook.js
// Every delivery status webhook includes a pricing object
aplicación.Correo electrónico:('/webhooks/whatsapp', (req) => {
  const { pricing } = req.body;

  si (!pricing.billable) {
    consola.log('Free: inside a service window');
  }
});
pricing.billable: false -> not charged by Meta
La Respuesta Corta

Is the WhatsApp API free?

No. Getting access to the WhatsApp API is free, but sending most types of messages through it is not. What is free depends on the message type and whether a service window is open, not on a flat monthly allowance.
Three different things get confused under the same question, so it helps to separate them before going further.
Access to the API
Creating a developer app and a WhatsApp Business Account costs nothing.
Gratis
Aplicación WhatsApp Business
The consumer app you install on a phone. A different product from the API, and also free.
Gratis
Messages sent via the API
Some are free, most are billed. The line between the two is a time window, not a quota.
Depends
The rest of this page breaks that third box down message type by message type, including the free tier question, personal use, API keys, open-source alternatives, and what changes on October 1, 2026. For the exact rate card, by message category and by country, see our Precios de la API de WhatsApp Business breakdown. This page focuses on the other side of that question: what genuinely costs nothing, under which conditions, and until when.
Build with the WhatsApp APIConnect an account in minutes, on behalf of your users.
Construir con Unipile
What's Free

What is free on the WhatsApp Cloud API in 2026?

Eight things are free on the WhatsApp Cloud API in 2026: API access, non-template messages and utility or authentication templates inside an open service window, service messages at all times, template approval, and every message type during a Free Entry Point window. Here is the complete list, sourced against Meta's own pricing documentation.
ElementEstadoCondiciónSource, verified 2026-08-10
API access and developer accountGratisNo conditionMeta, Get Started documentation
Non-template messages (regular replies)GratisOnly inside an open 24-hour customer service windowMeta: "All non-template messages are free"
Utility templatesGratisDelivered inside an open customer service windowMeta: "sent within an open customer service window are free"
Authentication templatesGratisDelivered inside an open customer service windowMeta: charged only "when sent outside customer service windows"
Service (session) messagesGratisAlways, since November 1, 2024Meta: "Service conversations are now free for all businesses"
Any message type in a Free Entry Point windowGratis72 hours, opened by a Click-to-WhatsApp ad or a Page CTA buttonMeta pricing documentation
Template submission and approvalGratisNo fee published for submitting or reviewing templatesMeta template guidelines
Marketing templatesBilledAlways, at deliveryMeta pricing documentation
Two windows decide almost everything on this list. The 24-hour customer service window (CSW) opens whenever a user messages you first, and while it is open, non-template replies and in-window utility or authentication templates are free. The Free Entry Point (FEP) window is different and more generous: it opens for 72 hours when a user responds to a Click-to-WhatsApp ad or a Page call-to-action button, and while it is open, every message type, templates included, is free. Marketing templates are the one category that stays billed no matter which window is open.
Free or billed: the decision flow
1
Is the message inside a 72-hour Free Entry Point window (opened by a Click-to-WhatsApp ad or a Page CTA button)?
Free, any message type
NoContinue to step 2
2
Is it a template message?
No, a regular replyContinue to step 3
Yes, a templateContinue to step 4
3
Is a 24-hour customer service window currently open?
Free, non-template reply
NoCan't send free-form, a template is required
4
Which template category?
MarketingBilled, always
Utility or authenticationContinue to step 5
5
Is a 24-hour customer service window open?
Gratis
NoBilled, at the utility or authentication rate
Full verbatim wording is available in Meta's own WhatsApp pricing documentation, verified August 10, 2026.
No Monthly Allowance

Is there a WhatsApp API free tier or a free message limit?

No. There is no monthly free tier and no fixed number of free conversations on the WhatsApp API in 2026. What is free is defined by the service window and the message type covered above, not by a quota that resets every month.
The zombie number
A commonly repeated claim is that businesses get "1,000 free conversations per month" on the WhatsApp API. That figure belonged to the conversation-based model Meta retired on July 1, 2025, and it does not appear anywhere in Meta's current pricing documentation. Under today's per-message model, free access is defined by whether a service window is open, not by a monthly allowance that resets. Any page still citing a 1,000-conversation free tier is describing a billing model that stopped existing over a year ago.
A related but different concept is the messaging limit tied to your phone number's quality rating and messaging tier: a ceiling on how many business-initiated conversations you can send in a rolling period, which increases as Meta's system builds trust in your number. That is a sending-rate ceiling, not a free allowance, and the two get confused constantly. See our guide to WhatsApp API messaging limits for the full mechanism.
What replaces the idea of a free quota is simple: it's the window that matters, not a counter.
Uso personal

Is the WhatsApp API free for personal use?

The WhatsApp Cloud API has no separate personal pricing tier. What a personal-use integration costs depends on the same message types and windows covered above, not on whether the account is personal or a business.
There is no cheaper "personal" rate card and no separate free allowance for individual use: a reply sent from someone's own number inside an open service window is free under the same rule that applies to any business account. For how to connect a personal or existing WhatsApp account to an integration in the first place, see our guide to use the WhatsApp API with a personal account.
Access Tokens

Is a WhatsApp API key free?

Yes. Getting an access token or API key for the WhatsApp API costs nothing. What is billed is not the key itself, it's the messages you send with it.
This is a common point of confusion for developers new to the platform: a WhatsApp API key, access token, or permanent token is a credential, not a purchase. Meta issues a temporary test token when you first set up a developer app and a WhatsApp Business Account, at no cost, so you can send test messages to a short list of verified numbers before going live. Billing only starts once you send real messages outside the free conditions covered in the section above. In short: holding a key is free, using it is what gets priced.
Sending For Free

Can you send WhatsApp messages through an API for free?

Yes, in three specific cases. Outside those three cases, sending a WhatsApp message through the API is billed.
Case 1A non-template reply, inside an open 24-hour service window
Case 2A utility or authentication template, inside that same window
Case 3Any message type, inside a 72-hour Free Entry Point window
Here is a minimal example that sends a free-form reply while a service window is open, next to how to confirm, programmatically, whether Meta actually billed a given message. Every delivery status webhook Meta sends back includes a precios object. Checking pricing.billable is the most reliable way to know, after the fact, whether a message you sent was free or charged, most integrations never look at this field.
send-reply.js
// Free-form reply, service window open
await mensajes.cliente.send({
  account_id: accountId,
  chat_id: chatId,
  text: 'Thanks for reaching out, here is your update.'
});
webhook-payload.json
{
  "evento": "message_status",
  "estado": "entregado",
  "pricing": {
    "billable": falso,
    "category": "service",
    "pricing_type": "in_window"
  }
}
billable: false confirms Meta did not charge for this message. When billable is true, category tells you which rate applied: utility, authentication, or marketing. For the full set of endpoints, templates and delivery statuses, see our guide to send WhatsApp messages with the API.
Constrúyelo con UnipileOne client for messages, webhooks and pricing status.
Constrúyelo con Unipile
Código abierto

Are free open-source WhatsApp APIs actually free?

The license is free, the risk is not. Free, unofficial WhatsApp libraries cost nothing to download and run, but they carry three costs that never show up on an invoice.
Number ban risk
These libraries connect by reverse-engineering WhatsApp's private client protocol rather than Meta's public API, which is against WhatsApp's terms of service. Meta can and does ban phone numbers it detects using this method.
No uptime guarantee
There is no service level agreement, no support contract and no roadmap commitment behind a free open-source client. When the library breaks, and unofficial clients break often, you are the one debugging it.
Maintenance follows every change
WhatsApp changes its private protocol without notice. A client that works today can stop working after the next update, and keeping it running becomes ongoing, unpaid maintenance work.
None of this makes these projects illegitimate as a category, plenty of small, low-stakes use cases run on them without issue. It does mean "free" only covers the license, not the operational cost of running unofficial software against a platform that was not built to be reverse-engineered. For a breakdown of how the official Cloud API, BSPs and linked-account APIs actually compare on cost and risk, see our guide to third-party WhatsApp API providers.
Build your WhatsApp integrationA maintained connection, not a reverse-engineered one.
Construye tu integración
Prueba gratuita

Is there a WhatsApp API free trial?

Meta itself does not offer a free trial of the WhatsApp Cloud API, there is no trial period to unlock. Free trials on the WhatsApp API come from the provider layer built on top of it, and they only ever waive that provider's own fee, never Meta's per-message charges.
This is the one rule the rest of the market rarely states plainly: a "free forever" plan or a free trial from a Business Solution Provider or a unified API cancels that provider's own subscription fee. It never cancels Meta's charge for a marketing template, or for a utility message sent outside a service window. Anyone offering a WhatsApp integration "for free" is still passing Meta's per-message bill through to you the moment you leave the free conditions covered earlier on this page.
What's genuinely testable without paying: creating a developer app, requesting a temporary test token, sending messages to a short list of verified test numbers, and submitting templates for approval.
Unipile, honestly
Unipile ofrece un 7 días de prueba gratuita, no credit card required, source Precios Unipile, verified August 10, 2026. After that trial, Unipile is a paid subscription like the rest of this layer, starting at 49 EUR (55 USD) per month for up to 10 linked accounts. The only free part is the trial itself.
Start your 7-day trialNo credit card required. Cancel anytime.
Start your 7-day trial
2026 Update

What changes on October 1, 2026?

Meta updates its WhatsApp pricing only on the first day of a quarter, and October 1, 2026 is one of those dates. What is documented and what is merely reported about that date are two different things, and this section keeps them separate.
Documented by Meta
What Meta's pricing documentation says
Meta updates pricing only on the first day of a quarter: "Meta may update pricing only on the 1st day of each quarter, thus up to 4 times per year: January 1, April 1, July 1, and/or October 1."
A rate card update takes effect October 1, 2026: several markets move from regional to standalone pricing, with lower utility and authentication rates for Bangladesh, Iraq, Nepal and Sri Lanka, and higher rates for Kazakhstan, Kuwait, Morocco, Oman and Ukraine.
"Meta will announce to-be rates no later than September 1, 2026, per the pricing calendar."
Source: Meta, WhatsApp Business Platform pricing updates changelog, verified August 10, 2026. Read the changelog.
Reported, not in Meta's changelog
What's being reported, and hasn't been confirmed
Several messaging vendors report that service (session) messages, free since November 1, 2024, will become billed again on October 1, 2026, at the utility or authentication rate, with the Free Entry Point exception maintained. As of August 10, 2026, this change does not appear anywhere in Meta's own updates-to-pricing changelog, which still states that service conversations are free for all businesses. We are not treating it as fact until Meta documents it. If that changes, this page and the free-message table above will be updated.
Source: third-party vendor reporting, not an official Meta publication.
Last verified: August 10, 2026
A Different Model

Is there a WhatsApp API that does not bill per message?

Yes. An integration that connects an account by QR code or pairing code, on behalf of the authenticated user, does not go through a WhatsApp Business Account and is not billed per message by Meta. It is not free either, it simply moves the cost to a different layer.
No WABA also means no Meta Business verification and no template requirement. What you pay instead is the provider's own subscription: on Precios Unipile, that is 49 EUR or 55 USD per month for up to 10 linked accounts, then tiered pricing per account beyond that, with unlimited API calls. Unipile is a paid service, its only free component is the 7-day trial covered above. See what the WhatsApp API costs with each provider type and the full Precios de la API de WhatsApp Business breakdown.
PathBilled per message by Meta?What you pay
Cloud API (direct)Meta's per-message rate, since July 1, 2025
Business Solution Provider (BSP)Meta's rate, plus the BSP's own subscription or margin
Linked account (Unipile)NoA flat subscription per linked account, starting at 49 EUR / 55 USD per month
Build with a connected WhatsApp accountNo WABA, no per-message billing from Meta.
Construir con Unipile
Decision Table

Which WhatsApp API path is free for your use case?

It depends on what you are doing, not which provider you pick. Here is a free-or-not breakdown for six common use cases, with the trap to watch for in each.
ObjectiveFree path?What you pay anywayThe trap
Testing the API without a budgetNothing, using a test token and verified test numbersTest numbers are capped and not meant for production traffic
Prototyping an integrationMostlyFree-form replies, inside a service windowAnything outside that window bills from message one
Responding to inbound support conversationsMostlyFree, as long as replies stay inside the 24-hour windowReplying after the window closes silently switches you to a billed template
Sending transactional notificationsPartlyUtility templates: free inside a window, billed outside itAssuming utility always means free is the most common billing surprise
Running outbound marketing campaignsNoMarketing templates are billed at delivery, alwaysThere is no free version of marketing messaging on this platform
Connecting your users' own WhatsApp accounts in a SaaSStructurally, yes, on Meta's sideA provider subscription instead of Meta's per-message rate"Not billed per message" does not mean the platform itself is free
None of these paths make the WhatsApp API a free product. They change who bills you, Meta, a provider, or both, and under what conditions.

Is the WhatsApp API free? Frequently asked questions

Six follow-up questions this page hasn't fully answered yet, without a table getting in the way.

Yes, and it is a different product from the WhatsApp API. The WhatsApp Business App is a free consumer app installed on a single phone and operated by hand. The API is a programmatic interface for software, with no app to install, following the pricing rules covered above. Downloading the app is free either way, sending API messages through software is what gets billed.

Yes. Meta does not charge for messages a user sends to you. Billing only ever applies to messages you send out, and even then, only outside the free conditions covered above: an open service window, a Free Entry Point window, or a non-marketing template inside a window.

Both. API access and a wide slice of everyday messaging inside an open service window are free. Marketing templates, and any template or reply sent outside a service window, are paid. There is no single yes-or-no answer, the message type and the window decide it.

Yes, for the parts developers actually need to get started: creating a developer app, requesting a temporary test token, and sending test messages to a short list of verified numbers all cost nothing. Billing only begins once you send real messages outside the free conditions described above, not at the development stage.

Not to obtain the number itself. Registering a phone number on the WhatsApp Business Platform is free. What triggers a charge is what you send from that number afterward: marketing templates always, and utility, authentication or free-form messages only once you send them outside an open service window.

No. No provider, official or unofficial, offers unlimited free WhatsApp messaging at scale. Meta bills per message outside the conditions covered above, unofficial clients carry the number-ban and maintenance risks covered earlier, and paid providers price or cap usage in some form. Treat any "unlimited free" claim as a sign to check the fine print.

¿Aún tiene preguntas? Nuestro equipo está aquí para ayudarle.

Hable con un experto
WhatsApp, and eight other channels

Build your WhatsApp integration with Unipile

One API for WhatsApp, LinkedIn, Instagram, Telegram, Gmail, Outlook, IMAP and calendars, linked accounts, on behalf of each authenticated user. Unipile is a paid platform: what you get for free is a 7-day trial, no credit card required.
49 EUR / 55 USD per month for up to 10 linked accounts, unlimited API calls.
es_ESES