File size: 64,950 Bytes
928d61e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 | {
"dataset": "changes",
"title": "WhatsApp API pricing changes",
"description": "A dated, sourced ledger of every recorded change to WhatsApp Business Platform pricing since 2019, with provenance and — where two rate cards bracket the change — the figures before and after.",
"license": {
"name": "CC BY 4.0",
"url": "https://creativecommons.org/licenses/by/4.0/"
},
"attribution": "WhaTools — https://wha.tools/whatsapp-api-pricing-history",
"source": "https://wha.tools/whatsapp-api-pricing-history",
"verified": "2026-08-06",
"upstream": "https://developers.facebook.com/docs/whatsapp/pricing",
"pricingCalendar": {
"quarterMonths": [
1,
4,
7,
10
],
"noticeMonths": {
"rateCard": 1,
"modelAddOn": 3,
"modelChange": 6
},
"source": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
},
"eras": [
{
"id": "era-templated-message",
"from": "2019-06-01",
"until": "2022-02-01",
"name": "Per templated message, volume-tiered",
"unit": "Delivered template message",
"summary": "Meta charged for each delivered templated message, priced by the recipient’s country and by how many messages were delivered to that country in the calendar month — bands running from the first 250,000 to over 25 million. Replies inside a 24-hour “Customer Care Window” opened by the user were free.",
"sources": [
{
"label": "Meta — List Price Schedule, June 2019",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "era-conversation-two-category",
"from": "2022-02-01",
"until": "2023-06-01",
"name": "Conversation-based, two categories",
"unit": "24-hour conversation",
"summary": "Billing moved from notifications to 24-hour conversations, split only into user-initiated and business-initiated. Each WhatsApp Business Account got 1,000 free conversations a month, and conversations opened from a Click-to-WhatsApp ad or a Page call-to-action button were free.",
"sources": [
{
"label": "Meta — Conversation-based pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing/conversation-based-pricing"
}
]
},
{
"id": "era-conversation-four-category",
"from": "2023-06-01",
"until": "2025-07-01",
"name": "Conversation-based, four categories",
"unit": "24-hour conversation",
"summary": "Conversations were re-cut into marketing, utility, authentication and service, each priced separately and all four billed. Service conversations became free in November 2024, and authentication-international rates arrived in June 2024.",
"sources": [
{
"label": "Meta — Conversation-based pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing/conversation-based-pricing"
}
]
},
{
"id": "era-per-message",
"from": "2025-07-01",
"until": null,
"name": "Per message",
"unit": "Delivered template message",
"summary": "Meta charges per delivered template message rather than per conversation. Utility templates sent inside an open customer service window are free, non-template messages are free, and utility and authentication earn volume discounts. Marketing is always billed and has no tiers.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
}
],
"eraRateCards": [
{
"eraId": "era-conversation-two-category",
"effective": "2022-02-01",
"captured": "2021-12-01",
"unit": "24-hour conversation",
"source": {
"label": "Meta — Conversation-Based Pricing (archived 1 December 2021)",
"url": "https://web.archive.org/web/20211201044234/https://developers.facebook.com/docs/whatsapp/pricing/conversationpricing/"
},
"categories": [
{
"id": "businessInitiated",
"label": "Business-initiated"
},
{
"id": "userInitiated",
"label": "User-initiated"
}
],
"currencies": [
"USD",
"EUR",
"INR",
"IDR",
"GBP",
"AUD"
],
"markets": [
"AR",
"BR",
"CL",
"CO",
"EG",
"FR",
"DE",
"IN",
"ID",
"IL",
"IT",
"MY",
"MX",
"NL",
"NG",
"PK",
"PE",
"RU",
"SA",
"ZA",
"ES",
"TR",
"AE",
"GB",
"NA",
"AFRICA",
"APAC",
"CEE",
"LATAM",
"MIDEAST",
"WEUROPE",
"OTHER"
],
"rates": {
"USD": {
"AR": [
0.0526,
0.0316
],
"BR": [
0.05,
0.03
],
"CL": [
0.0757,
0.0454
],
"CO": [
0.01,
0.006
],
"EG": [
0.1073,
0.0644
],
"FR": [
0.1432,
0.0859
],
"DE": [
0.1365,
0.0819
],
"IN": [
0.0066,
0.004
],
"ID": [
0.0316,
0.019
],
"IL": [
0.03,
0.018
],
"IT": [
0.0643,
0.0386
],
"MY": [
0.0732,
0.022
],
"MX": [
0.0349,
0.0105
],
"NL": [
0.1485,
0.0891
],
"NG": [
0.0516,
0.031
],
"PK": [
0.0473,
0.0142
],
"PE": [
0.0598,
0.0179
],
"RU": [
0.0663,
0.0398
],
"SA": [
0.0325,
0.0195
],
"ZA": [
0.028,
0.0168
],
"ES": [
0.0615,
0.0369
],
"TR": [
0.01,
0.003
],
"AE": [
0.0316,
0.019
],
"GB": [
0.0647,
0.0388
],
"NA": [
0.0147,
0.0088
],
"AFRICA": [
0.1208,
0.0363
],
"APAC": [
0.0745,
0.0224
],
"CEE": [
0.0835,
0.025
],
"LATAM": [
0.0706,
0.0423
],
"MIDEAST": [
0.0727,
0.0218
],
"WEUROPE": [
0.1324,
0.0397
],
"OTHER": [
0.0483,
0.0145
]
},
"EUR": {
"AR": [
0.0436,
0.0261
],
"BR": [
0.0414,
0.0248
],
"CL": [
0.0627,
0.0376
],
"CO": [
0.0083,
0.005
],
"EG": [
0.0889,
0.0533
],
"FR": [
0.1186,
0.0712
],
"DE": [
0.1131,
0.0679
],
"IN": [
0.0055,
0.0033
],
"ID": [
0.0262,
0.0157
],
"IL": [
0.0248,
0.0149
],
"IT": [
0.0532,
0.0319
],
"MY": [
0.0606,
0.0182
],
"MX": [
0.0289,
0.0087
],
"NL": [
0.123,
0.0738
],
"NG": [
0.0428,
0.0257
],
"PK": [
0.0392,
0.0118
],
"PE": [
0.0495,
0.0149
],
"RU": [
0.0549,
0.0329
],
"SA": [
0.0269,
0.0161
],
"ZA": [
0.0232,
0.0139
],
"ES": [
0.0509,
0.0305
],
"TR": [
0.0083,
0.0025
],
"AE": [
0.0262,
0.0157
],
"GB": [
0.0536,
0.0321
],
"NA": [
0.0122,
0.0073
],
"AFRICA": [
0.1001,
0.03
],
"APAC": [
0.0617,
0.0185
],
"CEE": [
0.0691,
0.0207
],
"LATAM": [
0.0584,
0.0351
],
"MIDEAST": [
0.0602,
0.0181
],
"WEUROPE": [
0.1096,
0.0329
],
"OTHER": [
0.04,
0.012
]
},
"INR": {
"AR": [
3.855,
2.313
],
"BR": [
3.6646,
2.1987
],
"CL": [
5.5464,
3.3279
],
"CO": [
0.7329,
0.4397
],
"EG": [
7.8651,
4.7191
],
"FR": [
10.4984,
6.299
],
"DE": [
10.0073,
6.0044
],
"IN": [
0.4843,
0.2906
],
"ID": [
2.3151,
1.389
],
"IL": [
2.1987,
1.3192
],
"IT": [
4.7098,
2.8259
],
"MY": [
5.3655,
1.6096
],
"MX": [
2.5565,
0.7669
],
"NL": [
10.8867,
6.532
],
"NG": [
3.7851,
2.271
],
"PK": [
3.4683,
1.0405
],
"PE": [
4.3839,
1.3152
],
"RU": [
4.8582,
2.9149
],
"SA": [
2.3795,
1.4277
],
"ZA": [
2.0554,
1.2332
],
"ES": [
4.5044,
2.7026
],
"TR": [
0.7329,
0.2199
],
"AE": [
2.3165,
1.3899
],
"GB": [
4.7413,
2.8448
],
"NA": [
1.0768,
0.6461
],
"AFRICA": [
8.8572,
2.6572
],
"APAC": [
5.4617,
1.6385
],
"CEE": [
6.1166,
1.835
],
"LATAM": [
5.1716,
3.103
],
"MIDEAST": [
5.3284,
1.5985
],
"WEUROPE": [
9.7014,
2.9104
],
"OTHER": [
3.5384,
1.0615
]
},
"IDR": {
"AR": [
750.66,
450.4
],
"BR": [
713.58,
428.15
],
"CL": [
1080.03,
648.02
],
"CO": [
142.72,
85.63
],
"EG": [
1531.53,
918.92
],
"FR": [
2044.3,
1226.58
],
"DE": [
1948.66,
1169.2
],
"IN": [
94.3,
56.58
],
"ID": [
450.8,
270.48
],
"IL": [
428.15,
256.89
],
"IT": [
917.1,
550.26
],
"MY": [
1044.79,
313.44
],
"MX": [
497.81,
149.34
],
"NL": [
2119.91,
1271.94
],
"NG": [
737.05,
442.23
],
"PK": [
675.37,
202.61
],
"PE": [
853.66,
256.1
],
"RU": [
946.02,
567.61
],
"SA": [
463.34,
278.01
],
"ZA": [
400.24,
240.14
],
"ES": [
877.11,
526.27
],
"TR": [
142.72,
42.81
],
"AE": [
451.07,
270.64
],
"GB": [
923.25,
553.95
],
"NA": [
209.68,
125.81
],
"AFRICA": [
1724.72,
517.41
],
"APAC": [
1063.53,
319.06
],
"CEE": [
1191.06,
357.32
],
"LATAM": [
1007.04,
604.23
],
"MIDEAST": [
1037.58,
311.27
],
"WEUROPE": [
1889.11,
566.73
],
"OTHER": [
689.01,
206.7
]
},
"GBP": {
"AR": [
0.0379,
0.0228
],
"BR": [
0.0361,
0.0216
],
"CL": [
0.0546,
0.0327
],
"CO": [
0.0072,
0.0043
],
"EG": [
0.0774,
0.0464
],
"FR": [
0.1033,
0.062
],
"DE": [
0.0985,
0.0591
],
"IN": [
0.0048,
0.0029
],
"ID": [
0.0228,
0.0137
],
"IL": [
0.0216,
0.013
],
"IT": [
0.0463,
0.0278
],
"MY": [
0.0528,
0.0158
],
"MX": [
0.0252,
0.0075
],
"NL": [
0.1071,
0.0643
],
"NG": [
0.0372,
0.0223
],
"PK": [
0.0341,
0.0102
],
"PE": [
0.0431,
0.0129
],
"RU": [
0.0478,
0.0287
],
"SA": [
0.0234,
0.014
],
"ZA": [
0.0202,
0.0121
],
"ES": [
0.0443,
0.0266
],
"TR": [
0.0072,
0.0022
],
"AE": [
0.0228,
0.0137
],
"GB": [
0.0467,
0.028
],
"NA": [
0.0106,
0.0064
],
"AFRICA": [
0.0871,
0.0261
],
"APAC": [
0.0537,
0.0161
],
"CEE": [
0.0602,
0.0181
],
"LATAM": [
0.0509,
0.0305
],
"MIDEAST": [
0.0524,
0.0157
],
"WEUROPE": [
0.0955,
0.0286
],
"OTHER": [
0.0348,
0.0104
]
},
"AUD": {
"AR": [
0.0684,
0.041
],
"BR": [
0.065,
0.039
],
"CL": [
0.0984,
0.059
],
"CO": [
0.013,
0.0078
],
"EG": [
0.1395,
0.0837
],
"FR": [
0.1862,
0.1117
],
"DE": [
0.1775,
0.1065
],
"IN": [
0.0086,
0.0052
],
"ID": [
0.0411,
0.0246
],
"IL": [
0.039,
0.0234
],
"IT": [
0.0835,
0.0501
],
"MY": [
0.0951,
0.0285
],
"MX": [
0.0453,
0.0136
],
"NL": [
0.1931,
0.1158
],
"NG": [
0.0671,
0.0403
],
"PK": [
0.0615,
0.0185
],
"PE": [
0.0777,
0.0233
],
"RU": [
0.0862,
0.0517
],
"SA": [
0.0422,
0.0253
],
"ZA": [
0.0364,
0.0219
],
"ES": [
0.0799,
0.0479
],
"TR": [
0.013,
0.0039
],
"AE": [
0.0411,
0.0246
],
"GB": [
0.0841,
0.0504
],
"NA": [
0.0191,
0.0115
],
"AFRICA": [
0.1571,
0.0471
],
"APAC": [
0.0969,
0.0291
],
"CEE": [
0.1085,
0.0325
],
"LATAM": [
0.0917,
0.055
],
"MIDEAST": [
0.0945,
0.0283
],
"WEUROPE": [
0.172,
0.0516
],
"OTHER": [
0.0627,
0.0188
]
}
}
}
],
"changes": [
{
"id": "2026-10-01-markets-standalone",
"effective": "2026-10-01",
"announced": "2026-06-01",
"area": "rates",
"summary": "Nine more markets move out of their regional groups onto standalone rates: Bangladesh, Iraq, Nepal and Sri Lanka get lower utility and authentication rates, while Kazakhstan, Kuwait, Morocco, Oman and Ukraine get higher ones. All nine gain an authentication-international rate above their current regional authentication rate.",
"provenance": "official",
"detail": "Announced ahead of time under Meta’s pricing calendar, which requires a month’s notice for a rate-card change. The figures themselves were due to be published by 1 September 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-10-01-service-messages-billed",
"effective": "2026-10-01",
"area": "model",
"summary": "Service messages are to become chargeable, ending the unlimited free service conversations introduced in November 2024.",
"provenance": "reported",
"verifiedBy": "Multiple BSP changelogs describe the same date and scope; not yet confirmed against Meta’s own page from this repository.",
"sources": [
{
"label": "ChakraHQ — service message pricing update",
"url": "https://chakrahq.com/article/whatsapp-api-pricing-update-service-messages-october-2026/"
},
{
"label": "YCloud — 24-hour window pricing",
"url": "https://www.ycloud.com/blog/whatsapp-service-messages-24-hour-window-pricing"
}
]
},
{
"id": "2026-08-01-business-agent-tokens",
"effective": "2026-08-01",
"area": "model",
"summary": "Meta Business Agent messages begin billing on token usage rather than per message, at roughly USD 2 per million tokens.",
"provenance": "reported",
"verifiedBy": "Reported consistently across BSP documentation; Meta’s own page not captured from this repository.",
"sources": [
{
"label": "Meta — pricing for non-template messages",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing/non-template-messages"
}
]
},
{
"id": "2026-07-01-brazil-brl-billing",
"effective": "2026-07-01",
"area": "billing",
"summary": "Billing localization for Brazil: eligible customers can create WhatsApp Business Accounts denominated in Brazilian reais, invoiced by Meta’s local entity. Existing accounts must migrate by 30 June 2027.",
"key": "currency:BRL",
"provenance": "official",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-markets-standalone",
"effective": "2026-07-01",
"area": "rates",
"summary": "Hong Kong, Hungary, Poland, Qatar, Romania and Singapore move out of their regional groups onto standalone rates, and their volume tiers become market-specific rather than counting toward the region’s.",
"provenance": "official",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-hk-authentication",
"effective": "2026-07-01",
"area": "rates",
"summary": "Hong Kong authentication rate rose 130%.",
"key": "market:HK.authentication",
"from": 0.0113,
"to": 0.026,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-hk-utility",
"effective": "2026-07-01",
"area": "rates",
"summary": "Hong Kong utility rate rose 130%.",
"key": "market:HK.utility",
"from": 0.0113,
"to": 0.026,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-hu-authentication",
"effective": "2026-07-01",
"area": "rates",
"summary": "Hungary authentication rate rose 65%.",
"key": "market:HU.authentication",
"from": 0.0212,
"to": 0.035,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-hu-utility",
"effective": "2026-07-01",
"area": "rates",
"summary": "Hungary utility rate rose 65%.",
"key": "market:HU.utility",
"from": 0.0212,
"to": 0.035,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-it-marketing",
"effective": "2026-07-01",
"area": "rates",
"summary": "Italy marketing rate rose 15%.",
"key": "market:IT.marketing",
"from": 0.0691,
"to": 0.0795,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-pl-authentication",
"effective": "2026-07-01",
"area": "rates",
"summary": "Poland authentication rate fell 42%.",
"key": "market:PL.authentication",
"from": 0.0212,
"to": 0.0122,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-pl-marketing",
"effective": "2026-07-01",
"area": "rates",
"summary": "Poland marketing rate fell 57%.",
"key": "market:PL.marketing",
"from": 0.086,
"to": 0.0366,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-pl-utility",
"effective": "2026-07-01",
"area": "rates",
"summary": "Poland utility rate fell 42%.",
"key": "market:PL.utility",
"from": 0.0212,
"to": 0.0122,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-qa-authentication",
"effective": "2026-07-01",
"area": "rates",
"summary": "Qatar authentication rate rose 32%.",
"key": "market:QA.authentication",
"from": 0.0091,
"to": 0.012,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-qa-utility",
"effective": "2026-07-01",
"area": "rates",
"summary": "Qatar utility rate rose 32%.",
"key": "market:QA.utility",
"from": 0.0091,
"to": 0.012,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-ro-authentication",
"effective": "2026-07-01",
"area": "rates",
"summary": "Romania authentication rate rose 37%.",
"key": "market:RO.authentication",
"from": 0.0212,
"to": 0.029,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-ro-utility",
"effective": "2026-07-01",
"area": "rates",
"summary": "Romania utility rate rose 37%.",
"key": "market:RO.utility",
"from": 0.0212,
"to": 0.029,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-sg-authentication",
"effective": "2026-07-01",
"area": "rates",
"summary": "Singapore authentication rate rose 42%.",
"key": "market:SG.authentication",
"from": 0.0113,
"to": 0.016,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-sg-utility",
"effective": "2026-07-01",
"area": "rates",
"summary": "Singapore utility rate rose 42%.",
"key": "market:SG.utility",
"from": 0.0113,
"to": 0.016,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-es-marketing",
"effective": "2026-07-01",
"area": "rates",
"summary": "Spain marketing rate rose 15%.",
"key": "market:ES.marketing",
"from": 0.0615,
"to": 0.0707,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-07-01-gb-marketing",
"effective": "2026-07-01",
"area": "rates",
"summary": "United Kingdom marketing rate rose 20%.",
"key": "market:GB.marketing",
"from": 0.0529,
"to": 0.0635,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 July 2026; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-04-01-new-billing-currencies",
"effective": "2026-04-01",
"area": "billing",
"summary": "Eight new billing currencies introduced: Argentine peso, Chilean peso, Colombian peso, Malaysian ringgit, Peruvian sol, Saudi riyal, Singapore dollar and UAE dirham.",
"provenance": "official",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-04-01-rate-updates",
"effective": "2026-04-01",
"area": "rates",
"summary": "Saudi Arabia’s marketing rate rose, India’s authentication-international rate rose, Pakistan’s utility and authentication rates rose, and Turkey’s fell.",
"provenance": "official",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-04-01-in-auth-international",
"effective": "2026-04-01",
"area": "rates",
"summary": "India authentication-international rate rose 9%.",
"key": "market:IN.authenticationInternational",
"from": 0.028,
"to": 0.0304,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 October 2025; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-04-01-pk-authentication",
"effective": "2026-04-01",
"area": "rates",
"summary": "Pakistan authentication rate rose 85%.",
"key": "market:PK.authentication",
"from": 0.0054,
"to": 0.01,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 October 2025; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-04-01-pk-utility",
"effective": "2026-04-01",
"area": "rates",
"summary": "Pakistan utility rate rose 85%.",
"key": "market:PK.utility",
"from": 0.0054,
"to": 0.01,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 October 2025; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-04-01-sa-marketing",
"effective": "2026-04-01",
"area": "rates",
"summary": "Saudi Arabia marketing rate rose 10%.",
"key": "market:SA.marketing",
"from": 0.0455,
"to": 0.0501,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 October 2025; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-04-01-tr-authentication",
"effective": "2026-04-01",
"area": "rates",
"summary": "Turkey authentication rate fell 83%.",
"key": "market:TR.authentication",
"from": 0.0053,
"to": 0.0009,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 October 2025; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-04-01-tr-utility",
"effective": "2026-04-01",
"area": "rates",
"summary": "Turkey utility rate fell 83%.",
"key": "market:TR.utility",
"from": 0.0053,
"to": 0.0009,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 October 2025; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-02-16-ai-providers",
"effective": "2026-02-16",
"area": "policy",
"summary": "A separate pricing policy takes effect for “AI Providers” building on the WhatsApp Business Platform. Updated 12 May 2026.",
"provenance": "official",
"sources": [
{
"label": "Meta — AI Providers pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing/ai-providers"
}
]
},
{
"id": "2026-01-01-india-inr-billing",
"effective": "2026-01-01",
"area": "billing",
"summary": "Billing localization for India: eligible customers bill in rupees, invoiced locally. Existing accounts must migrate by 31 December 2026.",
"key": "currency:INR",
"provenance": "official",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-01-01-rate-updates",
"effective": "2026-01-01",
"area": "rates",
"summary": "India’s marketing rate rose; France and Egypt’s fell; North America’s utility and authentication rates fell.",
"provenance": "official",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-01-01-eg-marketing",
"effective": "2026-01-01",
"area": "rates",
"summary": "Egypt marketing rate fell 40%.",
"key": "market:EG.marketing",
"from": 0.1073,
"to": 0.0644,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 October 2025; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026. Attributed to this date from Meta’s own “Previous rate card updates” list, which names the quarter each market moved in — our two cards bracket the window rather than sit either side of it.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-01-01-fr-marketing",
"effective": "2026-01-01",
"area": "rates",
"summary": "France marketing rate fell 40%.",
"key": "market:FR.marketing",
"from": 0.1432,
"to": 0.0859,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 October 2025; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026. Attributed to this date from Meta’s own “Previous rate card updates” list, which names the quarter each market moved in — our two cards bracket the window rather than sit either side of it.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2026-01-01-in-marketing",
"effective": "2026-01-01",
"area": "rates",
"summary": "India marketing rate rose 10%.",
"key": "market:IN.marketing",
"from": 0.0107,
"to": 0.0118,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed against Meta’s USD rate card effective 1 October 2025; the earlier figure comes from a transcribed April 2026 workbook, corroborated against Meta’s own changelog on all nine markets it names as changing on 1 July 2026. Attributed to this date from Meta’s own “Previous rate card updates” list, which names the quarter each market moved in — our two cards bracket the window rather than sit either side of it.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-10-01-rate-updates",
"effective": "2025-10-01",
"area": "rates",
"summary": "Colombia’s utility and authentication rates rose, Mexico’s marketing rate fell, the UAE’s rose, and Argentina, Egypt and Saudi Arabia saw reductions.",
"provenance": "official",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-10-01-ar-authentication",
"effective": "2025-10-01",
"area": "rates",
"summary": "Argentina authentication rate fell 10%.",
"key": "market:AR.authentication",
"from": 0.0289,
"to": 0.026,
"currency": "USD",
"provenance": "official",
"verifiedBy": "Diffed between Meta’s USD rate cards effective 1 July 2025 and 1 October 2025.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-10-01-ar-utility",
"effective": "2025-10-01",
"area": "rates",
"summary": "Argentina utility rate fell 10%.",
"key": "market:AR.utility",
"from": 0.0289,
"to": 0.026,
"currency": "USD",
"provenance": "official",
"verifiedBy": "Diffed between Meta’s USD rate cards effective 1 July 2025 and 1 October 2025.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-10-01-co-authentication",
"effective": "2025-10-01",
"area": "rates",
"summary": "Colombia authentication rate rose 300%.",
"key": "market:CO.authentication",
"from": 0.0002,
"to": 0.0008,
"currency": "USD",
"provenance": "official",
"verifiedBy": "Diffed between Meta’s USD rate cards effective 1 July 2025 and 1 October 2025.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-10-01-co-utility",
"effective": "2025-10-01",
"area": "rates",
"summary": "Colombia utility rate rose 300%.",
"key": "market:CO.utility",
"from": 0.0002,
"to": 0.0008,
"currency": "USD",
"provenance": "official",
"verifiedBy": "Diffed between Meta’s USD rate cards effective 1 July 2025 and 1 October 2025.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-10-01-eg-authentication",
"effective": "2025-10-01",
"area": "rates",
"summary": "Egypt authentication rate fell 31%.",
"key": "market:EG.authentication",
"from": 0.0052,
"to": 0.0036,
"currency": "USD",
"provenance": "official",
"verifiedBy": "Diffed between Meta’s USD rate cards effective 1 July 2025 and 1 October 2025.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-10-01-eg-utility",
"effective": "2025-10-01",
"area": "rates",
"summary": "Egypt utility rate fell 31%.",
"key": "market:EG.utility",
"from": 0.0052,
"to": 0.0036,
"currency": "USD",
"provenance": "official",
"verifiedBy": "Diffed between Meta’s USD rate cards effective 1 July 2025 and 1 October 2025.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-10-01-mx-marketing",
"effective": "2025-10-01",
"area": "rates",
"summary": "Mexico marketing rate fell 30%.",
"key": "market:MX.marketing",
"from": 0.0436,
"to": 0.0305,
"currency": "USD",
"provenance": "official",
"verifiedBy": "Diffed between Meta’s USD rate cards effective 1 July 2025 and 1 October 2025.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-10-01-sa-authentication",
"effective": "2025-10-01",
"area": "rates",
"summary": "Saudi Arabia authentication rate fell 7%.",
"key": "market:SA.authentication",
"from": 0.0115,
"to": 0.0107,
"currency": "USD",
"provenance": "official",
"verifiedBy": "Diffed between Meta’s USD rate cards effective 1 July 2025 and 1 October 2025.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-10-01-sa-utility",
"effective": "2025-10-01",
"area": "rates",
"summary": "Saudi Arabia utility rate fell 7%.",
"key": "market:SA.utility",
"from": 0.0115,
"to": 0.0107,
"currency": "USD",
"provenance": "official",
"verifiedBy": "Diffed between Meta’s USD rate cards effective 1 July 2025 and 1 October 2025.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-10-01-ae-marketing",
"effective": "2025-10-01",
"area": "rates",
"summary": "United Arab Emirates marketing rate rose 30%.",
"key": "market:AE.marketing",
"from": 0.0384,
"to": 0.0499,
"currency": "USD",
"provenance": "official",
"verifiedBy": "Diffed between Meta’s USD rate cards effective 1 July 2025 and 1 October 2025.",
"sources": [
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-07-01-per-message",
"effective": "2025-07-01",
"announced": "2024-10-01",
"area": "model",
"summary": "Billing moves from 24-hour conversations to individual delivered template messages.",
"key": "model",
"provenance": "official",
"detail": "Announced roughly nine months ahead. Under the pricing calendar Meta later published, a change of pricing model requires six months’ notice.",
"sources": [
{
"label": "Meta — Pricing updates",
"url": "https://developers.facebook.com/docs/whatsapp/pricing/updates-to-pricing"
},
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-07-01-utility-free-in-window",
"effective": "2025-07-01",
"area": "model",
"summary": "Utility templates delivered inside an open 24-hour customer service window become free.",
"provenance": "official",
"sources": [
{
"label": "Meta — Pricing updates",
"url": "https://developers.facebook.com/docs/whatsapp/pricing/updates-to-pricing"
}
]
},
{
"id": "2025-07-01-volume-tiers",
"effective": "2025-07-01",
"announced": "2025-05-15",
"area": "model",
"summary": "Volume tiers introduced for utility and authentication: six bands discounting up to 25% off the list rate, accrued monthly across a business portfolio. Marketing is excluded.",
"provenance": "official",
"sources": [
{
"label": "Meta — Volume tiers",
"url": "https://developers.facebook.com/docs/whatsapp/pricing/volume-tiers"
},
{
"label": "Meta — Pricing updates",
"url": "https://developers.facebook.com/docs/whatsapp/pricing/updates-to-pricing"
}
]
},
{
"id": "2025-07-01-auth-matches-utility",
"effective": "2025-07-01",
"area": "rates",
"summary": "Utility and authentication rates are updated across several markets. From this card onward the two categories carry an identical list rate in every market.",
"provenance": "official",
"verifiedBy": "Meta’s wording for this date is “update our utility and authentication rates across several markets”. That the two categories end up identical everywhere is read directly from Meta’s July 2025 USD card. This entry deliberately does not claim the whole convergence happened on this date — see the detail note.",
"detail": "This is why a rate table built before mid-2025 shows different utility and authentication figures. The convergence was not a single event: authentication rates in at least the nine authentication-international markets had already come down by 1 February 2025, so a table showing the two still far apart is older than that.",
"sources": [
{
"label": "Meta — Pricing updates",
"url": "https://developers.facebook.com/docs/whatsapp/pricing/updates-to-pricing"
},
{
"label": "Meta — Pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
},
{
"id": "2025-04-01-eg-auth-international",
"effective": "2025-04-01",
"area": "rates",
"summary": "Egypt authentication-international rate fell 22%.",
"key": "market:EG.authenticationInternational",
"from": 0.0833,
"to": 0.065,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed between third-party reproductions of Meta’s February 2025 and April 2025 authentication-international tables. Corroborated against Meta’s own July 2025 USD card, where all nine auth-international figures in the April table match to four decimal places — and against Meta’s own changelog, which names exactly these four markets: “Effective April 1, 2025, we are lowering our authentication-international rates in Egypt, Nigeria, Pakistan and South Africa.”",
"sources": [
{
"label": "Meta — Conversation-based pricing (deprecated)",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing/conversation-based-pricing"
},
{
"label": "Alibaba Cloud — WhatsApp authentication-international rates",
"url": "https://www.alibabacloud.com/help/en/chatapp/announcement-on-new-countries-with-whatsapp-authentication-international-rates"
}
]
},
{
"id": "2025-04-01-ng-auth-international",
"effective": "2025-04-01",
"area": "rates",
"summary": "Nigeria authentication-international rate fell 25%.",
"key": "market:NG.authenticationInternational",
"from": 0.0998,
"to": 0.075,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed between third-party reproductions of Meta’s February 2025 and April 2025 authentication-international tables. Corroborated against Meta’s own July 2025 USD card, where all nine auth-international figures in the April table match to four decimal places — and against Meta’s own changelog, which names exactly these four markets: “Effective April 1, 2025, we are lowering our authentication-international rates in Egypt, Nigeria, Pakistan and South Africa.”",
"sources": [
{
"label": "Meta — Conversation-based pricing (deprecated)",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing/conversation-based-pricing"
},
{
"label": "Alibaba Cloud — WhatsApp authentication-international rates",
"url": "https://www.alibabacloud.com/help/en/chatapp/announcement-on-new-countries-with-whatsapp-authentication-international-rates"
}
]
},
{
"id": "2025-04-01-pk-auth-international",
"effective": "2025-04-01",
"area": "rates",
"summary": "Pakistan authentication-international rate fell 42%.",
"key": "market:PK.authenticationInternational",
"from": 0.1286,
"to": 0.075,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed between third-party reproductions of Meta’s February 2025 and April 2025 authentication-international tables. Corroborated against Meta’s own July 2025 USD card, where all nine auth-international figures in the April table match to four decimal places — and against Meta’s own changelog, which names exactly these four markets: “Effective April 1, 2025, we are lowering our authentication-international rates in Egypt, Nigeria, Pakistan and South Africa.”",
"sources": [
{
"label": "Meta — Conversation-based pricing (deprecated)",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing/conversation-based-pricing"
},
{
"label": "Alibaba Cloud — WhatsApp authentication-international rates",
"url": "https://www.alibabacloud.com/help/en/chatapp/announcement-on-new-countries-with-whatsapp-authentication-international-rates"
}
]
},
{
"id": "2025-04-01-za-auth-international",
"effective": "2025-04-01",
"area": "rates",
"summary": "South Africa authentication-international rate fell 29%.",
"key": "market:ZA.authenticationInternational",
"from": 0.028,
"to": 0.02,
"currency": "USD",
"provenance": "reported",
"verifiedBy": "Diffed between third-party reproductions of Meta’s February 2025 and April 2025 authentication-international tables. Corroborated against Meta’s own July 2025 USD card, where all nine auth-international figures in the April table match to four decimal places — and against Meta’s own changelog, which names exactly these four markets: “Effective April 1, 2025, we are lowering our authentication-international rates in Egypt, Nigeria, Pakistan and South Africa.”",
"sources": [
{
"label": "Meta — Conversation-based pricing (deprecated)",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing/conversation-based-pricing"
},
{
"label": "Alibaba Cloud — WhatsApp authentication-international rates",
"url": "https://www.alibabacloud.com/help/en/chatapp/announcement-on-new-countries-with-whatsapp-authentication-international-rates"
}
]
},
{
"id": "2025-04-01-auth-intl-reductions",
"effective": "2025-04-01",
"area": "rates",
"summary": "Authentication-international rates lowered in four of the seven markets that had gained them in February.",
"provenance": "official",
"sources": [
{
"label": "Meta — Pricing updates",
"url": "https://developers.facebook.com/docs/whatsapp/pricing/updates-to-pricing"
}
]
},
{
"id": "2025-02-01-auth-intl-expansion",
"effective": "2025-02-01",
"area": "rates",
"summary": "Authentication-international rates extended to seven more markets across Asia-Pacific and EMEA: Egypt, Malaysia, Nigeria, Pakistan, Saudi Arabia, South Africa and the UAE. Domestic authentication rates in those markets came down at the same time.",
"provenance": "official",
"detail": "The domestic authentication figures published for these markets on this date are the ones still on the card in July 2025, which is why the July 2025 update did not move them again.",
"sources": [
{
"label": "Meta — Pricing updates",
"url": "https://developers.facebook.com/docs/whatsapp/pricing/updates-to-pricing"
},
{
"label": "Meta — Authentication-international rates",
"url": "https://developers.facebook.com/docs/whatsapp/pricing/authentication-international-rates"
}
]
},
{
"id": "2024-11-01-free-service-conversations",
"effective": "2024-11-01",
"announced": "2024-10-01",
"area": "model",
"summary": "Service conversations become free and unlimited, superseding the 1,000 free conversations a month each account had received since 2022.",
"provenance": "official",
"sources": [
{
"label": "Meta — Pricing updates",
"url": "https://developers.facebook.com/docs/whatsapp/pricing/updates-to-pricing"
}
]
},
{
"id": "2024-10-01-marketing-updates",
"effective": "2024-10-01",
"area": "rates",
"summary": "Marketing conversation rates updated in India, Saudi Arabia, the United Arab Emirates and the United Kingdom.",
"provenance": "official",
"detail": "Per-conversation rates, in the four-category model then in force. Meta’s wording is “updated”; third-party reporting has the first three rising and the UK falling. One anchor figure is reported: India’s marketing rate rose from 0.0099 to 0.0107 USD (TechCrunch, on Meta’s update) — and that 0.0107 carried unchanged into the per-message card that replaced conversation pricing on 1 July 2025. The era’s full per-market cards are not yet recovered at published-digit fidelity, so this is recorded as an event rather than as figures.",
"sources": [
{
"label": "Meta — Pricing updates",
"url": "https://developers.facebook.com/docs/whatsapp/pricing/updates-to-pricing"
}
]
},
{
"id": "2024-08-01-utility-lowered",
"effective": "2024-08-01",
"area": "rates",
"summary": "Utility conversation rates lowered across several markets.",
"provenance": "official",
"detail": "Per-conversation rates. One anchor figure is reported: India’s utility rate fell from 0.0042 to 0.0014 USD (TechCrunch, on Meta’s update), a 67% cut. The era’s full per-market cards are not yet recovered at published-digit fidelity, so this is recorded as an event rather than as figures.",
"sources": [
{
"label": "Meta — Pricing updates",
"url": "https://developers.facebook.com/docs/whatsapp/pricing/updates-to-pricing"
}
]
},
{
"id": "2024-06-01-auth-intl-introduced",
"effective": "2024-06-01",
"area": "rates",
"summary": "Authentication-international rates introduced — a separate, higher authentication price for messages to users in certain markets.",
"provenance": "official",
"sources": [
{
"label": "Meta — Authentication-international rates",
"url": "https://developers.facebook.com/docs/whatsapp/pricing/authentication-international-rates"
}
]
},
{
"id": "2023-06-01-four-categories",
"effective": "2023-06-01",
"area": "model",
"summary": "Conversations are re-cut from user- and business-initiated into marketing, utility, authentication and service, each with its own rate.",
"key": "model",
"provenance": "official",
"sources": [
{
"label": "Meta — Conversation-based pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing/conversation-based-pricing"
}
]
},
{
"id": "2022-02-01-conversation-based",
"effective": "2022-02-01",
"announced": "2021-12-01",
"area": "model",
"summary": "Billing moves from individual notifications to 24-hour conversations, with 1,000 free conversations a month per account and free entry-point conversations from Click-to-WhatsApp ads.",
"key": "model",
"provenance": "official",
"sources": [
{
"label": "Meta — Conversation-based pricing",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing/conversation-based-pricing"
}
]
},
{
"id": "2019-06-01-list-price-schedule",
"effective": "2019-06-01",
"area": "model",
"summary": "The first published price list: per delivered template message, priced by country and by monthly volume band, with a free 24-hour customer care window.",
"key": "model",
"provenance": "official",
"sources": [
{
"label": "Meta — List Price Schedule, June 2019",
"url": "https://developers.facebook.com/documentation/business-messaging/whatsapp/pricing"
}
]
}
]
}
|