WA.cr APP - API v2
  1. Account
WA.cr APP - API v2
  • API v2 Documentation
    • Account
      • Get Account Info
        GET
      • Get Usage Statistics
        GET
      • Get Plan Limits
        GET
    • Authentication (OTP Verification)
      • Send OTP/Verification Code
      • Resend OTP
      • Verify OTP
      • Check OTP Status
      • List Authentication Templates
    • Comments
      • Get Comments
      • Add Comment
    • Contacts
      • List Contacts
      • Create Contact
      • Get Contact
      • Update Contact
      • Delete Contact
      • Batch Create Contacts
      • Batch Delete Contacts
    • Groups
      • List Groups
      • Create Group
      • Get Group
      • Update Group
      • Delete Group
      • Add Contacts to Group
      • Remove Contacts from Group
    • Messages
      • Send Text Message
      • Send Template Message
      • Send Media Message
      • Send Interactive Message
      • List Messages
      • Get Message
    • Sources
      • List Sources
      • Create Source
      • Get Source
      • Update Source
      • Delete Source
    • Statuses
      • List Statuses
      • Create Status
      • Get Status
      • Update Status
      • Delete Status
    • Templates
      • List Templates
      • Sync Templates from WhatsApp
      • Get Template
  1. Account

Get Plan Limits

GET
/account/limits
Retrieve the current subscription plan's feature limits, API rate limits, and feature access flags for the authenticated tenant.

Authentication#

Required Scope: account:read

Response#

Success (200 OK): Returns limits and feature access flags. Includes message: "Plan limits retrieved successfully".

Response Structure#

data.limits Object#

Each limit entry contains:
FieldTypeDescription
limitintegerMaximum allowed count (-1 means unlimited)
feature_namestringHuman-readable feature name
is_unlimitedbooleanWhether the feature has no limit
Limit keys:
KeyFeature NameDescription
contactsTotal ContactsMaximum number of contacts
conversationsConversations per MonthMonthly conversation limit
campaignsActive CampaignsMaximum active campaigns
staffTeam MembersMaximum team members
api_calls_per_minuteAPI Calls per MinuteRate limit per API token (from token's rate_limit_per_minute, default: 60)

data.features Object#

Boolean flags indicating whether specific features are enabled on the current plan:
KeyDescription
whatsapp_templatesWhatsApp template management access
bulk_messagingBulk messaging capability
chatbotChatbot automation
advanced_analyticsAdvanced analytics dashboard
api_accessAPI access (always true if making this request)
custom_brandingCustom branding/white-label

Error Responses#

StatusCodeDescription
404NOT_FOUNDTenant not found
500INTERNAL_ERRORFailed to fetch plan limits

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or

Responses

🟢200
application/json
Successful response
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/account/limits' \
--header 'Authorization: Bearer <token>'
Response Response Example
{}
Modified at 2026-02-25 01:06:20
Previous
Get Usage Statistics
Next
Send OTP/Verification Code
Built with