SendComms
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 Rates
Ghana (+233)$0.029
Nigeria (+234)$0.029
Kenya (+254)$0.029
South Africa (+27)$0.029
Other African countries$0.029
🌐

Global

Best Rates
US/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

ParameterTypeRequiredDescription
country_codestringOptionalFilter by country code (e.g., 233, 1, 44)
phonestringOptionalGet pricing for a specific phone number
regionstringOptionalFilter 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

CountryCodePrice/SMSRegion
🇬🇭 Ghana+233$0.029Africa
🇳🇬 Nigeria+234$0.029Africa
🇰🇪 Kenya+254$0.029Africa
🇿🇦 South Africa+27$0.029Africa
🇺🇸 United States+1$0.009N. America
🇬🇧 United Kingdom+44$0.046Europe
🇩🇪 Germany+49$0.063Europe
🇮🇳 India+91$0.029Asia