Retrieve balance

Archived

This will show the number of credits available on your account.

GET https://api.clickatell.com/rest/account/balance

The REST API may respond with various HTTP status codes. See the full list here.

JSON

Request

GET /rest/account/balance HTTP/1.1
HOST: api.clickatell.com
X-Version: 1
Authorization: Bearer [Your Authorization Token]
Accept: application/json

Response

HTTP/1.1 200 OK
Content-Type: application/json
 
{
 "data":{
   "balance":"300.50"
  }
}

XML

Request

Response

Sample code

cURL

Python

PHP