Fetch the balance for an Account based on Account Sid

GET /2010-04-01/Accounts/{AccountSid}/Balance.json

Account balance

Fetch the balance for an Account based on Account Sid. Balance changes may not be reflected immediately. Child accounts do not contain balance information

Path parameters

  • AccountSid string Required

    The unique SID identifier of the Account.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • account_sid string | null

      Account Sid.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

    • balance string | null

      Account balance

    • currency string | null

      Currency units

GET /2010-04-01/Accounts/{AccountSid}/Balance.json
curl \
 -X GET https://api.twilio.com/2010-04-01/Accounts/{AccountSid}/Balance.json \
 --user "username:password"
Response examples (200)
{
  "account_sid": "string",
  "balance": "string",
  "currency": "string"
}