Shop Login
Features Pricing How It Works FAQ
Bulk SMS Ghana SMS Marketing Ghana Business SMS Notifications School SMS Alerts Hospital & Clinic Alerts Church SMS Ghana Event SMS Reminders Gym & Fitness SMS Pharmacy SMS Ghana Hotel & Hospitality SMS Real Estate SMS Ghana NGO SMS Ghana University SMS Alerts Clinic SMS Reminders Transport SMS Ghana Insurance SMS Notifications Restaurant SMS Ghana
Get Started
Trusted by Software Engineers & Startups in Ghana

Developer SMS API
for Ghana

Integrate transactional SMS alerts, MoMo checkout OTP verifications, and custom Sender IDs directly into your software. Simple GHS-billed developer REST API — NCA approved. Reach MTN, Telecel & AT networks in under 2 seconds!

100+ Developers Active
50K+ OTPs Dispatched
99.9% Uptime SLA
POST /api/v1/messages/
curl -X POST https://cedcast.com/api/v1/messages/ \
  -H "Authorization: Token secret_key" \
  -H "Content-Type: application/json" \
  -d '{
    "content": "OTP code is 4821",
    "recipients": ["0241234567"]
  }'
import requests

url = "https://cedcast.com/api/v1/messages/"
headers = {
    "Authorization": "Token secret_key",
    "Content-Type": "application/json"
}
payload = {
    "content": "OTP code is 4821",
    "recipients": ["0241234567"]
}

response = requests.post(url, json=payload, headers=headers)
print(response.json())
const url = "https://cedcast.com/api/v1/messages/";
const headers = {
  "Authorization": "Token secret_key",
  "Content-Type": "application/json"
};
const body = JSON.stringify({
  content: "OTP code is 4821",
  recipients: ["0241234567"]
});

fetch(url, { method: "POST", headers, body })
  .then(res => res.json())
  .then(data => console.log(data))

Everything you expect from a Modern SMS Gateway

A developer-centric set of features designed to scale with your volume.

Instant MoMo OTPs

Deliver critical 2FA/OTPs and checkout verifications to MTN, Telecel, and AT networks in under 2 seconds. Retain high-converting customers with instant, zero-delay delivery.

Real-Time Webhooks

Configure a Webhook URL and receive instant, push-based delivery report callbacks on your server the moment we receive carrier delivery updates.

Pre-Create Billing

Protect against double deductions. Our atomic billing system pre-calculates long segment counts and deducts exactly what is needed upfront in a secure transaction.

PRICING TIERS

Exclusive Developer API Rates

Developers who integrate our API get heavily discounted rates compared to our web dashboard. No monthly subscriptions.

Tier 1
GH₵0.20 /SMS
0 - 1,000 sent SMS

Standard web UI rate: GH₵0.22
Save 9%
Get Started
Tier 3
GH₵0.12 /SMS
5,001+ sent SMS

Standard web UI rate: GH₵0.14
Save 14%
Get Started
*One-time custom Sender ID setup fee of **GH₵300.00** unlocks lifetime developer API key access. Pay only for what you send thereafter.

Get Connected in 3 Simple Steps

A streamlined path to launching programmatic SMS Alerts.

1
Submit Sender ID

Register for your custom, alphanumeric Sender ID and complete the one-time upfront registration fee of GH₵300.00.

2
Test Sandbox API

Your credentials unlock instantly upon payment. Build and test using the CEDCAST channel (max 100 SMS/day) while waiting for approval.

3
Go Live Automatically

The second your custom Sender ID is approved, the daily sandbox limits vanish and your sends automatically transition to your new Sender ID.

Developer SMS API — Frequently Asked Questions

Everything you need to know about the CedCast SMS API for developers in Ghana

There are no active rate limits for fully approved custom Sender ID businesses. For sandbox testing (pending approval phase), there is an automated guardrail limit of 100 SMS per day to prevent spam abuse.

If a recipient dispatch fails immediately due to validation, balance, or routing issues, no charge is applied. If a message fails after delivery (due to invalid number from carrier, etc.), credits are instantly refunded to your central prepaid wallet.

No! The CedCast API is designed for programmatic ease. You simply pass raw recipient numbers to the endpoint. If they are new to the platform, CedCast dynamically resolves and creates secure contact records on-the-fly under the hood.