SMS API
Simple. Fast. Direct. Global.
A Powerful SMS API.
160 characters with unlimited possibilities.

What can you use it for?
Notifications
Send important and timely transaction notifications to your customer base.
Reminders
Transaction Alerts
Two Factor Authentication
Key Features
So you can focus on what matters.
In depth analytics and reports.
Send messages across the globe.
Instant delivery, within an average of 7 seconds.
How it Works
5 Simple & Easy Steps
Step 1
Step 2
Step 3
Step 4
Step 5
The Beem Advantage
We understand our customers rely on our services and expect us to deliver scalable and reliable bulk SMS services. Through our SMS messaging experience, market knowledge, and domain expertise, we constantly strive to solve our customer's challenges whilst remaining economical and competitive.
Uptime
Platform uptime guarantee of 99.9%.
Scalability
Network Reach
Support
Flexible Models
No minimum commitment with a pay-as-you-go model.
Tiered Pricing
Competitive tier-based pricing.
<?php
//…. replace <api_key> and <secret_key> with the valid keys obtained from the platform, under profile>authentication information
$api_key=‘<api_key>’;
$secret_key = ‘<secret_key>’;
// The data to send to the API
$postData = array(
‘source_addr’ => ‘INFO’,
‘encoding’=>0,
‘schedule_time’ => ”,
‘message’ => ‘Hello World’,
‘recipients’ => [array(‘recipient_id’ => ‘1’,‘dest_addr’=>‘255700000001’),array(‘recipient_id’ => ‘2’,‘dest_addr’=>‘255700000011’)]
);
//…. Api url
$Url =‘https://apisms.beem.africa/v1/send’;
// Setup cURL
$ch = curl_init($Url);
error_reporting(E_ALL);
ini_set(‘display_errors’, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt_array($ch, array(
CURLOPT_POST => TRUE,
CURLOPT_RETURNTRANSFER => TRUE,
CURLOPT_HTTPHEADER => array(
‘Authorization:Basic ‘ . base64_encode(“$api_key:$secret_key”),
‘Content-Type: application/json’
),
CURLOPT_POSTFIELDS => json_encode($postData)
));
// Send the request
$response = curl_exec($ch);
// Check for errors
if($response === FALSE){
echo $response;
die(curl_error($ch));
}
var_dump($response);