RESTful API for sending SMS to Orange and Africell networks. Get your API keys in minutes and start integrating today.
Standard HTTP requests with JSON payloads. Works with any programming language.
OAuth 2.0 with client credentials. HTTPS for all API calls.
Real-time delivery status callbacks to your server.
Comprehensive API reference with code examples in Python, Node.js, PHP, and cURL.
curl -X POST "https://api.sierrahive.com/v1/sms" \
-u "CLIENT_ID:SECRET" \
-H "Content-Type: application/json" \
-d '{"from": "YourBrand", "to": "23279000000", "content": "Hello!"}'
const axios = require('axios');
axios.post('https://api.sierrahive.com/v1/sms', {
from: 'YourBrand',
to: '23279000000',
content: 'Hello from Node!'
}, {
auth: { username: 'CLIENT_ID', password: 'SECRET' }
});
Get your API credentials and start sending SMS in minutes.