🔧 Developer-First Platform

SMS API for Sierra Leone

RESTful API for sending SMS to Orange and Africell networks. Get your API keys in minutes and start integrating today.

View API Docs Get API Keys
# Python Example

import requests

response = requests.post(
  "https://api.sierrahive.com/v1/sms",
  auth=("CLIENT_ID", "SECRET"),
  json={
    "from": "YourBrand",
    "to": "23279000000",
    "content": "Hello from API!"
  }
)

API Features

Simple REST API

Standard HTTP requests with JSON payloads. Works with any programming language.

Secure Authentication

OAuth 2.0 with client credentials. HTTPS for all API calls.

Delivery Webhooks

Real-time delivery status callbacks to your server.

Full Documentation

Comprehensive API reference with code examples in Python, Node.js, PHP, and cURL.

Code Examples

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!"}'

Node.js

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' }
});

Start Building with the SMS API

Get your API credentials and start sending SMS in minutes.

Read the Docs Get API Keys