Skip to main content
GET
/
v1
/
plan
Get current plan
curl --request GET \
  --url https://api.zavu.dev/v1/plan \
  --header 'Authorization: Bearer <token>'
{
  "tier": "pro",
  "billingInterval": "monthly",
  "status": "active",
  "currentPeriodStart": "2026-03-01T00:00:00Z",
  "currentPeriodEnd": "2026-04-01T00:00:00Z",
  "cancelAtPeriodEnd": false,
  "limits": {
    "messagesA2P": 100000,
    "emails": 100000,
    "senders": 3,
    "phoneNumbers": 3,
    "wabaConnections": 3,
    "broadcasts": true,
    "subAccounts": false
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Plan details.

tier
enum<string>
required

Current subscription tier.

Available options:
free,
pro,
scale,
enterprise
billingInterval
enum<string>
required
Available options:
monthly,
annual
status
enum<string>
required
Available options:
active,
past_due,
canceled,
trialing
currentPeriodStart
string<date-time>
currentPeriodEnd
string<date-time>
cancelAtPeriodEnd
boolean
limits
object