Messaging pricing by country
Path parameters
-
The ISO country code of the pricing information to fetch.
GET
/v1/Messaging/Countries/{IsoCountry}
curl \
--request GET 'https://pricing.twilio.com/v1/Messaging/Countries/{IsoCountry}' \
--user "username:password"
Response examples (200)
{
"country": "country",
"inbound_sms_prices": [
{
"base_price": "0.05",
"current_price": "0.05",
"number_type": "mobile"
}
],
"iso_country": "US",
"outbound_sms_prices": [
{
"carrier": "att",
"mcc": "foo",
"mnc": "bar",
"prices": [
{
"base_price": "0.05",
"current_price": "0.05",
"number_type": "mobile"
}
]
}
],
"price_unit": "USD",
"url": "https://pricing.twilio.com/v1/Messaging/Countries/US"
}