This page tracks the latest WhatsApp Business API news, releases and policy changes that affect developers, BSPs and businesses building on the platform. Bookmark this page — it's updated weekly with material changes.
Latest week (May 12-17, 2026)
Service conversation tracking now in invoices
Meta now itemizes service (customer-initiated) conversations in monthly invoices, even though they remain free. Helps businesses validate that their "free" tier usage matches expectations.
Template review time average improvements
Per Meta's status page, average template approval dropped to 4.2 hours for Utility, 8 hours for Marketing. Authentication templates still automated/instant.
Brazil Authentication price drop
Authentication templates in Brazil dropped from R$ 0.045 to R$ 0.040 per conversation effective May 1.
May 2026 highlights
Carousel templates GA
After 6 months of beta,
carousel templates (multiple product cards inline) are now generally available globally. Supports up to 10 cards per template with image + button per card.
Implementation example (
full guide here):
typescript
await zavu.messages.send({
to: "+14155551234",
channel: "whatsapp",
messageType: "template",
content: {
templateId: "tpl_carousel_products",
carouselCards: [
{ imageUrl: "...", text: "...", buttonText: "Buy now" },
]
}
})
Voice message templates rollout
Templates can now include pre-recorded audio segments. Max length: 30 seconds. Audio counts toward 4MB total template size.
Quality score thresholds tightened
Numbers with block rates > 0.5% (was 1%) now enter throttling. Recovery procedure: 14 days of clean sending typically restores score.
April 2026
Indian pricing adjustments
Marketing: ₹0.45 → ₹0.55 (+22%)Utility: ₹0.13 → ₹0.16 (+23%)Authentication: ₹0.10 → ₹0.10 (no change)
Still extremely cheap globally. Indian e-commerce remains the biggest WhatsApp Business API market by volume.
"AI conversation" category announced
New billing category for conversations primarily driven by AI agents. Meta plans to introduce per-conversation pricing slightly below Marketing tier. Specifics TBA.
Click-to-WhatsApp Ads conversion tracking improvements
message.referral event now includes Meta Ads campaign ID, ad creative ID and attribution window. Critical for paid social teams.
March 2026
Cloud API v19.0 released
Backward compatible with v18. Removes deprecated endpoints (
/onboarding,
/migrate). Adds new
/conversations/{id} endpoint for billing-level conversation queries.
Stricter compliance on Marketing templates
Templates with "limited time", "expires", "today only" language now flagged for manual review. Auto-rejection in some cases.
Sub-account billing API
Meta released APIs to programmatically separate sub-account billing for BSPs serving resellers.
Zavu sub-accounts already support this.
February 2026
Per-message status field deprecated
The
status field on inbound messages no longer includes "read" state. Use
message.read event instead.
Migration:
typescript
if (event.message.status === "read") {...}
if (event.type === "message.read") {...}
Argentina pricing increase
Marketing: $0.060 → $0.066Utility: $0.034 → $0.036Authentication: $0.006 (no change)
January 2026
Multi-product messages expanded
Templates can now include up to 30 products from your catalog (was 10). Useful for full shopping flows.
Verification webhook improvements
Webhook payload for incoming messages now includes verified business name, reducing the need for separate contact resolution calls.
Cloud API v18 released
Major release. New features:
- Carousel templates (then beta, now GA)
- Reaction message support (already had emoji reactions, now templated)
- Improved error codes (more specific failure reasons)
How to stay updated
Subscribe to BSP changelogs: most BSPs publish weekly. Zavu changelog is detailed.Meta for Developers blog: occasional but authoritative. developers.facebook.com/blogTwitter/X: follow @WABetaInfo, @WhatsAppDev (when active)Reddit r/whatsappdev: active community for unofficial discussionsWhat hasn't changed (and likely won't)
- 24-hour service window (Meta's fundamental design)
- Template approval as gatekeeper for non-service conversations
- Quality score system (becoming stricter, not removed)
- Per-conversation billing (replaces 2023 per-message model permanently)
- BSP requirement for production use
Quick reference: deprecation timeline
| On-Premises API | Deprecated | December 2026 (final) |
|---|
| Per-message billing | Removed | Already removed (2023) |
|---|
Inbound status="read" field | Deprecated | June 2026 |
|---|
/onboarding v17 endpoint | Removed | February 2026 (already) |
|---|
Conclusion
WhatsApp Business API is a moving target. The most impactful changes in 2026 so far: tightened quality score thresholds (be careful with marketing campaigns), carousel templates going GA (use them for product catalogs), and India pricing increases (re-evaluate Indian campaigns budget). Subscribe to BSP changelogs and check this page weekly — staying current saves you compliance issues and surprise invoice line items.