SMS API
v
Free Plan Available
3 endpoints
Send SMS messages to any Nigerian phone number. Supports single and bulk messaging with delivery reports.
Endpoints
POST
/send
Send a single SMS message
/min
POST
/bulk
Send SMS to multiple recipients
/min
GET
/status/{message_id}
Check delivery status of a message
/min
Quick Start
curl -X POST "https://gateway.africoders.com/sms/send" \
-H "X-API-Key: sk_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{"to": "+2348012345678", "message": "Hello!"}'
$response = Http::withHeaders([
'X-API-Key' => 'sk_live_your_api_key'
])->post('https://gateway.africoders.com/sms/send', [
'to' => '+2348012345678',
'message' => 'Hello!'
]);
const response = await fetch('https://gateway.africoders.com/sms/send', {
method: 'POST',
headers: {
'X-API-Key': 'sk_live_your_api_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
to: '+2348012345678',
message: 'Hello!'
})
});
Subscribe
API Info
- Version
- v
- Base URL
gateway.africoders.com/sms- Category
- Messaging
- Endpoints
- 3