Get Current Wallet Balance
Last updated
The Wallet API allows you to monitor your account balance, track transactions, and enable or disable automatic top-ups. These endpoints help you manage funds used for sending SMS messages.
Retrieve the current balance of your account.
GET /walletread:UserWalletYour API key must have this permission enabled in order to use this endpoint.
curl --location 'https://<hostname>/wallet' \
--header 'Authorization: Bearer YOUR_API_KEY'Replace YOUR_API_KEY with your API key.
All endpoints shown in this documentation use a sample base URL. The production API endpoint is provided by our team upon request.
{
"success": true,
"balance": 42.50,
"currency": "USD"
}Last updated