Resellers
Your Customers, Your Branding, Our Platform.
The Beem reseller program.
Provide new solutions to your customers.
Onboarding
Take full ownership of your customers, manage, engage and delight them with your own unique offering.
Collect Payments
Set your own pricing and collect payments directly from your customers. Zero transaction fees.
Instant Sign Up
Zero Setup Costs
Advanced SMS Platform.
Enterprise Management tools to help you scale.
- Clean, Modern & User Friendly User Interface
- Manage All Your Client Accounts in One Place
- Set Your Own Pricing Tiers Per Client
- In-depth Client Reporting & Activity Tracking
- Advanced Client & Contact Management & Grouping
- Send SMS’s Using Your Address Book or File Upload
- Schedule SMS Broadcasts
- Personalize Each SMS
- Online SMS Credits Purchase Using Mobile Money
- Create Unlimited SMS Templates

Key Features
Built for hassle free business.
Free Reseller Account
Zero Upfront Payment
Intuitive Management Console
On-Call Support
Free Training
White Label Solution
How it Works
4 Simple & Easy Steps
Step 1
Step 2
Step 3
Step 4
The Beem Advantage
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.
Integrate with Our Platform
Want to add SMS features into your own platform? Our robust API backed by a comprehensive API documentation and sample code allows businesses to integrate with our SMS solution into any application other third party systems like an ERP, CRM, etc easily.
<?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);
Harness the power of SMS across Africa, and the World, with Beem’s SMS Messaging Platform.