Airtime
Convenient mobile top-ups delivered instantly.
Delivery airtime mobile top-ups across to your user base across Africa, instantly.
Top-Ups Made Easy
Send Airtime to Multiple Numbers on any Network, Instantly.

What can you use Mobile Airtime for?
Generate new revenue streams, streamline existing distributions, reward customers and innovate new ways of integrating airtime into your business processes and practices.
Employers
- Faster disbursements
- Less financial and operational management
- Centralized billing and invoicing
- Increase financial control and reduce pilferage
- Earn commissions
- Scale to multiple countries
Software Developers
- Add new revenue stream from your apps
- Increase value added services for customers
- Launch in days, not months
- Scale to multiple countries
Marketers
Marketers constantly need to devise innovative ways to engage consumers and drive product adoption. Mobile airtime can be used as an effective micro-incentive for driving consumer engagement and customer acquisition through unique marketing campaigns. Develop your own unique marketing campaigns and incorporate airtime rewards to provide brand loyalty and brand awareness.
- Innovate for your clients with powerful digital tools
- Track metrics, conversions and uptake
- Earn commissions
- Launch campaigns in multiple countries
Key Features
So you can focus on what matters.
How it Works
3 Simple & Easy Steps
Step 1
Step 2
Step 3
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.
Integrate with Our Platform
Ready to start adding Mobile Airtime features into your own platform? Take a look at our comprehensive API documentation and sample code which provide you with detailed instructions and comprehensive tutorials.
<?php
//…. replace <api_key> and <secret_key> with the valid keys obtained from the platform, under profile>authentication information
$url=“https://apiairtime.beem.africa/v1/transfer”;
$api_key=‘<api_key>’;
$secret_key = ‘<secret_key>’;
$dest_addr=“<Mobile number>”;
$amount =“<Amount>”;
$body = array(‘dest_addr’=>$dest_addr,‘amount’=>$amount);
// Setup cURL
$ch = curl_init($url);
$option = 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($body));
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,$option);
// Send money
$response = curl_exec($ch);
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
// Check for errors
if($response === FALSE){
echo $response;
die(curl_error($ch));
}
var_dump($response);
Delivery airtime mobile top-ups across to your user base across Africa, instantly.