--- title: WhatsApp Business API News: Latest Updates & Releases description: Latest WhatsApp Business API news for developers: feature releases, pricing updates, deprecations and what's coming. Updated regularly. date: 2026-05-17 author: Victor Villalobos locale: en source: https://www.zavu.dev/en/blog/whatsapp-business-api-news tags: WhatsApp, News, Updates --- # WhatsApp Business API News: Latest Updates & Releases 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](/en/blog/whatsapp-business-api-integration)): ```typescript await zavu.messages.send({ to: "+14155551234", channel: "whatsapp", messageType: "template", content: { templateId: "tpl_carousel_products", carouselCards: [ { imageUrl: "...", text: "...", buttonText: "Buy now" }, // up to 10 cards ] } }) ``` ### 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](/en/ai-agents) 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 // Before if (event.message.status === "read") {...} // After if (event.type === "message.read") {...} ``` ### Argentina pricing increase Marketing: $0.060 → $0.066 Utility: $0.034 → $0.036 Authentication: $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 1. **Subscribe to BSP changelogs**: most BSPs publish weekly. [Zavu changelog](https://docs.zavu.dev) is detailed. 2. **Meta for Developers blog**: occasional but authoritative. [developers.facebook.com/blog](https://developers.facebook.com/blog) 3. **Twitter/X**: follow @WABetaInfo, @WhatsAppDev (when active) 4. **Reddit r/whatsappdev**: active community for unofficial discussions ## What 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 | Feature | Status | Sunset date | |---|---|---| | 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) | ## Related resources - [WhatsApp Business API updates 2026 (full year)](/en/blog/whatsapp-business-api-updates) - [WhatsApp Business API pricing breakdown](/en/blog/whatsapp-business-api-pricing) - [WhatsApp Business API explainer](/en/whatsapp-business-api) - [Zavu changelog](https://docs.zavu.dev/changelog) ## 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.