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)
{
"url": "https://pricing.twilio.com/v1/Messaging/Countries/US",
"country": "country",
"price_unit": "USD",
"iso_country": "US",
"inbound_sms_prices": [
{
"base_price": "0.05",
"number_type": "mobile",
"current_price": "0.05"
}
],
"outbound_sms_prices": [
{
"mcc": "foo",
"mnc": "bar",
"prices": [
{
"base_price": "0.05",
"number_type": "mobile",
"current_price": "0.05"
}
],
"carrier": "att"
}
]
}