SMS API
SMS Pricing
GET/api/v1/sms/pricing
Retrieve SMS pricing for different countries and regions. Use this endpoint to check rates before sending messages or to display pricing to your users.
Pricing by Region
🌍
Africa
Optimized RatesGhana (+233)$0.029
Nigeria (+234)$0.029
Kenya (+254)$0.029
South Africa (+27)$0.029
Other African countries$0.029
🌐
Global
Best RatesUS/Canada (+1)$0.009
UK (+44)$0.046
Germany (+49)$0.063
India (+91)$0.029
Other countriesVaries
* All prices include 15% service margin. Prices are per SMS segment.
Select Language
REQUEST
# Get all SMS pricing
curl -X GET \
https://api.sendcomms.com/api/v1/sms/pricing \
-H "Authorization: Bearer YOUR_API_KEY"
# Get pricing for a specific country
curl -X GET \
"https://api.sendcomms.com/api/v1/sms/pricing?country_code=233" \
-H "Authorization: Bearer YOUR_API_KEY"
# Get pricing for a phone number
curl -X GET \
"https://api.sendcomms.com/api/v1/sms/pricing?phone=+233540800994" \
-H "Authorization: Bearer YOUR_API_KEY"
# Get pricing by region
curl -X GET \
"https://api.sendcomms.com/api/v1/sms/pricing?region=africa" \
-H "Authorization: Bearer YOUR_API_KEY"Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| country_code | string | Optional | Filter by country code (e.g., 233, 1, 44) |
| phone | string | Optional | Get pricing for a specific phone number |
| region | string | Optional | Filter by region: africa, europe, asia, north_america |
Response Codes
200Success401Unauthorized
Response
Success Response
Returns pricing information by country and region.
{
"success": true,
"data": {
"pricing": [
{
"country_code": "233",
"country_name": "Ghana",
"price_per_message": 0.029,
"currency": "USD",
"region": "africa"
},
{
"country_code": "234",
"country_name": "Nigeria",
"price_per_message": 0.029,
"currency": "USD",
"region": "africa"
}
],
"notes": {
"segments": "SMS longer than 160 characters are split into multiple segments",
"unicode": "Messages with non-ASCII characters use 70 chars per segment",
"pricing_basis": "Price is per segment, not per message"
}
}
}Full Pricing Table
| Country | Code | Price/SMS | Region |
|---|---|---|---|
| 🇬🇭 Ghana | +233 | $0.029 | Africa |
| 🇳🇬 Nigeria | +234 | $0.029 | Africa |
| 🇰🇪 Kenya | +254 | $0.029 | Africa |
| 🇿🇦 South Africa | +27 | $0.029 | Africa |
| 🇺🇸 United States | +1 | $0.009 | N. America |
| 🇬🇧 United Kingdom | +44 | $0.046 | Europe |
| 🇩🇪 Germany | +49 | $0.063 | Europe |
| 🇮🇳 India | +91 | $0.029 | Asia |
