SMS Rate Object
The SMS Rate Object defines the pricing parameters for sending messages through specific carriers or networks.
It contains information about the country, network operator, and mobile codes (mcc and mnc), as well as the corresponding price per message segment in USD.
Rates are typically used for cost estimation, billing, and routing optimization.
SMS Rate Object Attributes
| Attribute | Data Type | Description |
|---|---|---|
| country_code read only | string | The ISO 3166-1 alpha-3 three-letter country code of this rate. |
| country_name read only | string | The common name of the country of this rate. |
| mcc read only | integer | Mobile country code for this rate. |
| mnc read only | integer | Mobile network code for this rate. |
| network read only | string | The name of the network used for this rate. |
| operator read only | string | The name of the operator used for this rate. |
| price read only | number | The price in US dollars used for this rate. |
Sample SMS Rate object
{
"country_code": "CZE",
"country_name": "Czech Republic",
"mcc": 230,
"mnc": 4,
"network": null,
"operator": null,
"price": "0.08533"
}