The Pricing Trunking resource provides a simple API to pull real-time, account-specific pricing for Twilio's Elastic SIP Trunking.
Prices can be retrieved at a country level via the Pricing Trunking Countries resource or for a specific phone number via the Pricing Trunking Numbers resource.
You may also wish to check out our Pricing API resources for Twilio's Voice, Messaging and Phone Number products.
Looking for details on pricing for Twilio products? Check out Twilio's pricing page.
All URLs in the reference documentation use the following base URL:
https://pricing.twilio.com/v2/trunking
HTTP requests to the REST API are protected with HTTP Basic authentication. To learn more about how Twilio handles authentication, please refer to our security documentation. In short, you will use your Twilio account SID as the username and your auth token as the password for HTTP Basic authentication.
1curl -G https://pricing.twilio.com/v2/Trunking/Countries/US \2-u '[YOUR ACCOUNT SID]:[YOUR AUTH TOKEN]'3
You can find your account SID and auth token on your dashboard.
1https://pricing.twilio.com/v2/Trunking/Countries2
This resource returns a list of countries where Twilio trunking services are available and the corresponding URL for retrieving the country specific trunking prices. This list includes paging information.
Retrieve a list of countries where Twilio trunking services are available.
1// Download the helper library from https://www.twilio.com/docs/node/install2const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";34// Find your Account SID and Auth Token at twilio.com/console5// and set the environment variables. See http://twil.io/secure6const accountSid = process.env.TWILIO_ACCOUNT_SID;7const authToken = process.env.TWILIO_AUTH_TOKEN;8const client = twilio(accountSid, authToken);910async function listTrunkingCountry() {11const countries = await client.pricing.v2.countries.list({ limit: 20 });1213countries.forEach((c) => console.log(c.country));14}1516listTrunkingCountry();
1{2"countries": [3{4"country": "Andorra",5"iso_country": "AD",6"url": "https://pricing.twilio.com/v2/Trunking/Countries/AD"7}8],9"meta": {10"first_page_url": "https://pricing.twilio.com/v2/Trunking/Countries?PageSize=50&Page=0",11"key": "countries",12"next_page_url": null,13"page": 0,14"page_size": 50,15"previous_page_url": null,16"url": "https://pricing.twilio.com/v2/Trunking/Countries?PageSize=50&Page=0"17}18}
You can also retrieve pricing information for individual countries.
1// Download the helper library from https://www.twilio.com/docs/node/install2const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";34// Find your Account SID and Auth Token at twilio.com/console5// and set the environment variables. See http://twil.io/secure6const accountSid = process.env.TWILIO_ACCOUNT_SID;7const authToken = process.env.TWILIO_AUTH_TOKEN;8const client = twilio(accountSid, authToken);910async function fetchTrunkingCountry() {11const country = await client.pricing.v2.countries("BB").fetch();1213console.log(country.country);14}1516fetchTrunkingCountry();
1{2"country": "United States",3"originating_call_prices": [4{5"base_price": null,6"current_price": "0.0085",7"number_type": "local"8},9{10"base_price": null,11"current_price": "0.022",12"number_type": "toll free"13}14],15"iso_country": "BB",16"terminating_prefix_prices": [17{18"base_price": null,19"current_price": "0.090",20"destination_prefixes": [21"1907"22],23"friendly_name": "Outbound Trunking Minute - United States - Alaska",24"origination_prefixes": [25"ALL"26]27},28{29"base_price": null,30"current_price": "0.013",31"destination_prefixes": [32"1808"33],34"friendly_name": "Outbound Trunking Minute - United States - Hawaii",35"origination_prefixes": [36"ALL"37]38},39{40"base_price": null,41"current_price": "0.013",42"destination_prefixes": [43"1800",44"1844",45"1855",46"1866",47"1877",48"1888"49],50"friendly_name": "Outbound Trunking Minute - United States & Canada - Toll Free",51"origination_prefixes": [52"ALL"53]54},55{56"base_price": null,57"current_price": "0.013",58"destination_prefixes": [59"1"60],61"friendly_name": "Outbound Trunking Minute - United States & Canada",62"origination_prefixes": [63"ALL"64]65}66],67"price_unit": "USD",68"url": "https://pricing.twilio.com/v2/Trunking/Countries/US"69}
1https://pricing.twilio.com/v2/Trunking/Countries/{Country}2
where {Country} is the ISO 3166-1 alpha-2 format country code
This resource represents prices to make trunking calls to phone numbers in a given country, organized by phone number prefix (TerminatingPrefixPriceWithOrigin), and the prices to receive trunking calls on Twilio phone numbers in this country, organized by phone number type (OriginatingCallPrices).
A Pricing Trunking Country resource is represented by the following properties:
Property | Description |
---|---|
DestinationPrefixes | Set of destination phone number prefixes for the requested country with the same pricing |
OriginationPrefixes | Set of origination phone number prefixes for the requested country with the same pricing. Valid set elements include specific prefixes, ALL (representing the entire set of all valid prefixes), or ROW (representing the rest-of-world, which is the set of remaining prefixes that aren't specifically listed) |
FriendlyName | Descriptive text for this set of prefixes |
BasePrice | In the current version of the API, this value will always be null |
CurrentPrice | The current price per minute (which accounts for any volume or custom price discounts) to make a call to numbers matching this prefix list. |
Property | Description |
---|---|
NumberType | The phone number type, either local , mobile , national , or toll free |
BasePrice | In the current version of the API, this value will always be null |
CurrentPrice | The current price per minute (which accounts for any volume or custom price discounts) to receive a call to this phone number type. |
This resource represents the prices to make trunking calls to a given phone number (TerminatingPrefixPrices) and the prices to receive trunking calls to this Twilio phone number (OriginatingCallPrice).
1https://pricing.twilio.com/v2/Trunking/Numbers/{Phone Number}2
where {Phone Number} is the phone number in E.164 format
The destination phone number in E.164 format, which consists of a + followed by the country code and subscriber number.
The origination phone number in [E.164 format, which consists of a + followed by the country code and subscriber number.
The currency in which prices are measured, specified in ISO 4127 format (e.g. usd
, eur
, jpy
).
The absolute URL of the resource.
Property | Description |
---|---|
BasePrice | In the current version of the API, this value will always be null |
CurrentPrice | The current price per minute (which accounts for any volume or custom price discounts) to make a call to this number |
OriginationPrefixes | Set of origination phone number prefixes for the requested country with the same pricing. Valid set elements include specific prefixes, ALL (representing the entire set of all valid prefixes), or ROW (representing the rest-of-world, which is the set of remaining prefixes that aren't specifically listed) |
Retrieve trunking prices for phone number +15108675310
.
1// Download the helper library from https://www.twilio.com/docs/node/install2const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";34// Find your Account SID and Auth Token at twilio.com/console5// and set the environment variables. See http://twil.io/secure6const accountSid = process.env.TWILIO_ACCOUNT_SID;7const authToken = process.env.TWILIO_AUTH_TOKEN;8const client = twilio(accountSid, authToken);910async function fetchTrunkingNumber() {11const number = await client.pricing.v2.numbers("+15017122661").fetch();1213console.log(number.destinationNumber);14}1516fetchTrunkingNumber();
1{2"country": "United States",3"destination_number": "+15017122661",4"originating_call_price": {5"base_price": null,6"current_price": null,7"number_type": null8},9"iso_country": "US",10"origination_number": null,11"terminating_prefix_prices": [12{13"base_price": null,14"current_price": "0.013",15"destination_prefixes": [16"1800"17],18"friendly_name": "Trunking Outbound Minute - United States Zone 1b",19"origination_prefixes": [20"ALL"21]22}23],24"price_unit": "USD",25"url": "https://pricing.twilio.com/v2/Trunking/Numbers/+18001234567"26}
1https://pricing.twilio.com/v2/Trunking/Numbers/{Destination Number}?OriginationNumber={Origination Number}2
Retrieve trunking prices for phone number +15108675310
where the Origination Number is +18001234567
.
1// Download the helper library from https://www.twilio.com/docs/node/install2const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";34// Find your Account SID and Auth Token at twilio.com/console5// and set the environment variables. See http://twil.io/secure6const accountSid = process.env.TWILIO_ACCOUNT_SID;7const authToken = process.env.TWILIO_AUTH_TOKEN;8const client = twilio(accountSid, authToken);910async function fetchTrunkingNumber() {11const number = await client.pricing.v212.numbers("+11111111111")13.fetch({ originationNumber: "+15108675310" });1415console.log(number.destinationNumber);16}1718fetchTrunkingNumber();
1{2"country": "United States",3"destination_number": "+11111111111",4"originating_call_price": {5"base_price": null,6"current_price": null,7"number_type": null8},9"iso_country": "US",10"origination_number": "+15108675310",11"terminating_prefix_prices": [12{13"base_price": null,14"current_price": "0.013",15"destination_prefixes": [16"1800"17],18"friendly_name": "Trunking Outbound Minute - United States Zone 1b",19"origination_prefixes": [20"ALL"21]22}23],24"price_unit": "USD",25"url": "https://pricing.twilio.com/v2/Trunking/Numbers/+18001234567"26}