Fetch phone number country
Phone number pricing by country
Path parameters
-
The ISO country code of the pricing information to fetch.
GET
/v1/PhoneNumbers/Countries/{IsoCountry}
curl \
--request GET 'https://pricing.twilio.com/v1/PhoneNumbers/Countries/{IsoCountry}' \
--user "username:password"
Response examples (200)
{
"url": "https://pricing.twilio.com/v1/PhoneNumbers/Countries/US",
"country": "United States",
"price_unit": "USD",
"iso_country": "US",
"phone_number_prices": [
{
"base_price": "1.00",
"number_type": "local",
"current_price": "1.00"
},
{
"base_price": "2.00",
"number_type": "toll free",
"current_price": "2.00"
}
]
}