Get the current month’s usage counters for A2P messages and emails, along with the tier limits.
curl --request GET \
--url https://api.zavu.dev/v1/usage \
--header 'Authorization: Bearer <token>'{
"messagesA2P": 45231,
"emailsSent": 12000,
"limits": {
"messagesA2P": 100000,
"emails": 100000
},
"tier": "pro",
"monthKey": "2026-03"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Usage details.
A2P messages sent this month (WhatsApp replies + Telegram).
Emails sent this month.
Show child attributes
free, pro, scale, enterprise Current month in YYYY-MM format.
"2026-03"
curl --request GET \
--url https://api.zavu.dev/v1/usage \
--header 'Authorization: Bearer <token>'{
"messagesA2P": 45231,
"emailsSent": 12000,
"limits": {
"messagesA2P": 100000,
"emails": 100000
},
"tier": "pro",
"monthKey": "2026-03"
}