Twilio Programmable Messaging Pricing can be found in two different locations:
Twilio Programmable Messaging Pricing Website
Current Twilio Programmable SMS and MMS pricing can be found listed by country on our site here: https://www.twilio.com/sms/pricing/us
A full list of our Messaging pricing is also available to download from our site in a .CSV formatted spreadsheet. Please note that these rates are subject to change, and the .csv file is updated daily. We recommend that you download a fresh copy from time to time to get the latest pricing.
Twilio Messaging Pricing API
Real time, project specific SMS pricing is available through the Twilio Pricing API. API results are broken down by Mobile Country/Network Code (MCC/MNC), and then sorted by destination phone number type.
Here’s an example cURL script:
curl -G https://pricing.twilio.com/v1/Messaging/Countries/US \
-u 'ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:your_auth_token'
To make this script work, update the two-character ISO Country code US
in line 1 with the desired destination country (full list here). Then, update line 2 with your Account SID and Auth Token. Once your script is updated, paste it into a terminal window.