Twilio Programmable Voice Pricing can be found in two different locations:
Twilio Programmable Voice Pricing Website
Current Twilio programmable voice call pricing can be found listed by country on our site here: https://www.twilio.com/voice/pricing/us
A full list of our voice 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 Voice Pricing API
Real time, project specific Voice pricing is available through the Twilio Pricing API. API results are broken down into categories, sorted by destination phone number prefix.
Here’s an example cURL script:
curl -G https://pricing.twilio.com/v1/Voice/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.