A2P 10DLC Campaign Vetting Delays: Twilio cannot approve 10DLC Campaigns ourselves, and must rely on third parties who control our connections to carriers to sign off. These external processes are creating several week delays for our customers. We continue to escalate these issues and are working to reduce delays wherever possible. Further details will be shared in the Campaign Vetting Changes article as they become available.

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