Is the WhatsApp API Kostenlos? What Is Free and What Is Not in 2026
// Every delivery status webhook includes a pricing object
App.Beitrag('/webhooks/whatsapp', (req) => {
const { pricing } = req.body;
wenn (!pricing.billable) {
Konsole.log('Free: inside a service window');
}
});
Is the WhatsApp API free?
What is free on the WhatsApp Cloud API in 2026?
| Element | Status | Bedingung | Source, verified 2026-08-10 |
|---|---|---|---|
| API access and developer account | Kostenlos | No condition | Meta, Get Started documentation |
| Non-template messages (regular replies) | Kostenlos | Only inside an open 24-hour customer service window | Meta: "All non-template messages are free" |
| Utility templates | Kostenlos | Delivered inside an open customer service window | Meta: "sent within an open customer service window are free" |
| Authentication templates | Kostenlos | Delivered inside an open customer service window | Meta: charged only "when sent outside customer service windows" |
| Service (session) messages | Kostenlos | Always, since November 1, 2024 | Meta: "Service conversations are now free for all businesses" |
| Any message type in a Free Entry Point window | Kostenlos | 72 hours, opened by a Click-to-WhatsApp ad or a Page CTA button | Meta pricing documentation |
| Template submission and approval | Kostenlos | No fee published for submitting or reviewing templates | Meta template guidelines |
| Marketing templates | Billed | Always, at delivery | Meta pricing documentation |
Is there a WhatsApp API free tier or a free message limit?
Is the WhatsApp API free for personal use?
Is a WhatsApp API key free?
Can you send WhatsApp messages through an API for free?
Preisgestaltung 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.// Free-form reply, service window open
await client.messages.send({
account_id: accountId,
chat_id: chatId,
text: 'Thanks for reaching out, here is your update.'
});
{
"Ereignis": "message_status",
"Status": "geliefert",
"pricing": {
"billable": falsch,
"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.Are free open-source WhatsApp APIs actually free?
Is there a WhatsApp API free trial?
What changes on October 1, 2026?
Is there a WhatsApp API that does not bill per message?
| Path | Billed per message by Meta? | What you pay |
|---|---|---|
| Cloud API (direct) | Ja | Meta's per-message rate, since July 1, 2025 |
| Business Solution Provider (BSP) | Ja | Meta's rate, plus the BSP's own subscription or margin |
| Linked account (Unipile) | Nein | A flat subscription per linked account, starting at 49 EUR / 55 USD per month |
Which WhatsApp API path is free for your use case?
| Objective | Free path? | What you pay anyway | The trap |
|---|---|---|---|
| Testing the API without a budget | Ja | Nothing, using a test token and verified test numbers | Test numbers are capped and not meant for production traffic |
| Prototyping an integration | Mostly | Free-form replies, inside a service window | Anything outside that window bills from message one |
| Responding to inbound support conversations | Mostly | Free, as long as replies stay inside the 24-hour window | Replying after the window closes silently switches you to a billed template |
| Sending transactional notifications | Partly | Utility templates: free inside a window, billed outside it | Assuming utility always means free is the most common billing surprise |
| Running outbound marketing campaigns | Nein | Marketing templates are billed at delivery, always | There is no free version of marketing messaging on this platform |
| Connecting your users' own WhatsApp accounts in a SaaS | Structurally, yes, on Meta's side | A provider subscription instead of Meta's per-message rate | "Not billed per message" does not mean the platform itself is free |
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.
Haben Sie noch Fragen? Unser Team ist für Sie da.