Potential Support Response Time Delays Due to Surge in Toll-Free Queries: We’re experiencing a surge in inquiries due to the November 8, 2023 Toll-Free Restricted Traffic Shutdown Deadline. We’re committed to helping you; please bear with us as there might be some delays. For more details, see Toll-Free Message Verification for US/Canada.

Check Your Twilio Account Balance

A Twilio account's current balance can be checked via Console or the REST API. This guide will walk you through both methods.

Check an Account Balance via Console

Your Twilio account balance can be seen in a number of locations in Console:

Check an Account Balance via the REST API

An account's current balance can also be checked by making an HTTP GET request to an account's Balance resource. Here’s an example cURL script:

curl -G https://api.twilio.com/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Balance.json \
-u "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:your_auth_token"

This example request the current balance for the account with Account SID ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX. To make this script work for you, make the following updates, and then paste it into a terminal window:

You should see a response in the following format:

{
"currency": "USD",
"balance": "12.29",
"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}

Related Topics

Have more questions? Submit a request
Powered by Zendesk