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 Account Info

GET
/account
Retrieve the authenticated tenant's account information including subscription details.

Authentication#

Required Scope: account:read

Response#

Success (200 OK): Returns account data with subscription information. Includes message: "Account information retrieved successfully".

Response Fields#

FieldTypeDescription
idintegerTenant ID
namestringCompany name (falls back to subdomain if not set)
subdomainstringTenant subdomain
statusstringAccount status (default: active)
created_atstringISO 8601 datetime of account creation

Subscription Object#

FieldTypeDescription
plan_namestringCurrent plan name (default: Free if no active subscription)
plan_idinteger|nullPlan ID
statusstring|nullSubscription status (e.g. active, expired, cancelled)
expires_atstring|nullISO 8601 datetime when the current billing period ends

Error Responses#

StatusCodeDescription
404NOT_FOUNDAccount not found
500INTERNAL_ERRORFailed to fetch account information

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' \
--header 'Authorization: Bearer <token>'
Response Response Example
{}
Modified at 2026-02-25 01:06:20
Next
Get Usage Statistics
Built with