惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

量子位
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Y
Y Combinator Blog
The Cloudflare Blog
Last Week in AI
Last Week in AI
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Tailwind CSS Blog
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
博客园 - 司徒正美
B
Blog RSS Feed
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Send SMS to Uganda, Kenya, Tanzania and 40+ Countries fro...
yoola sms · 2026-06-22 · via DEV Community

I Built Uganda's Most Affordable SMS API — Here's How to Integrate It in 5 Minutes (PHP, Python, JS)

TL;DR: Yoola SMS is a bulk SMS platform built for Uganda and East Africa. API starts at UGX 20/SMS (~$0.005). Supports MTN, Airtel, Kenya, Tanzania, UK, USA and 40+ countries. Top up with Mobile Money. Free account + 3 SMS to test. No credit card needed.


If you've ever tried to add SMS to a Ugandan app, you know the pain:

  • International SMS APIs charge in USD — your Ugandan client can't pay with a VISA card
  • Local options are expensive, undocumented, or both
  • You spend more time fighting the integration than building your actual product

I built Yoola SMS to fix exactly that. It's a REST API that works like Twilio — but designed for Uganda, priced in UGX, and topped up with MTN Mobile Money or Airtel Money.

Here's everything you need to integrate it today.


What You Can Build With It

  • 🏫 School fee reminders — send to 500 parents in 10 seconds
  • 🏦 SACCO loan alerts — notify members of approvals, due dates, savings updates
  • 🛒 E-commerce order confirmations — automated OTPs and delivery alerts
  • 📊 Any app that needs SMS — authentication, notifications, marketing campaigns
  • 🌍 Cross-border campaigns — Uganda, Kenya, Tanzania, Rwanda, UK, UAE, and 40+ more

Pricing (Real Numbers, No Surprises)

Volume Price per SMS
Up to 999 SMS UGX 35/SMS
1,000 – 9,999 UGX 30/SMS
10,000 – 59,999 UGX 25/SMS
60,000+ UGX 20/SMS

East Africa: Kenya & Tanzania = 3 credits/SMS · Rwanda = 4 credits/SMS

International: UK, USA, UAE, Australia = 8–16 credits/SMS

Top up: MTN MoMo or Airtel Money — instant, no bank needed


The API — 3 Endpoints You Actually Need

Base URL

https://yoolasms.com/api/v1/

Authentication

Every request needs your api_key. Get it from your dashboard under My API Key.


1. Send SMS

Endpoint: POST /send.php

Content-Type: application/json

Request body:

{
  "phone": "0704487563",
  "message": "Hello from Yoola SMS!",
  "api_key": "YOUR_API_KEY",
  "sender": "YoolaBiz"
}

Bulk send — just comma-separate the numbers:

{
  "phone": "0704487563,0772727716,0756123456",
  "message": "Your order has been confirmed. Thank you!",
  "api_key": "YOUR_API_KEY"
}

Success response:

{
  "status": "success",
  "code": 200,
  "recipients": 3,
  "credits_used": 3,
  "balance": 282,
  "message_parts": 1
}


PHP Integration (Copy-Paste Ready)

<?php

function sendSMS($phone, $message, $apiKey, $sender = 'YoolaSMS') {
    $url  = 'https://yoolasms.com/api/v1/send.php';
    $data = [
        'phone'   => $phone,
        'message' => $message,
        'api_key' => $apiKey,
        'sender'  => $sender,
    ];

    $ch = curl_init($url);
    curl_setopt_array($ch, [
        CURLOPT_POST           => true,
        CURLOPT_POSTFIELDS     => json_encode($data),
        CURLOPT_HTTPHEADER     => ['Content-Type: application/json'],
        CURLOPT_RETURNTRANSFER => true,
        CURLOPT_TIMEOUT        => 30,
    ]);

    $response = json_decode(curl_exec($ch), true);
    curl_close($ch);

    return $response;
}

// ── Single SMS ──
$result = sendSMS('0704487563', 'Your OTP is 847291. Expires in 5 minutes.', 'YOUR_API_KEY');
echo "Status: " . $result['status'] . "\n";
echo "Credits used: " . $result['credits_used'] . "\n";
echo "Balance: " . $result['balance'] . "\n";

// ── Bulk SMS ──
$phones  = implode(',', ['0704487563', '0772727716', '0756111222', '0701333444']);
$message = "Dear customer, Term 2 fees are due by 5th July. Pay to A/C 00123456. Thank you.";
$result  = sendSMS($phones, $message, 'YOUR_API_KEY', 'SchoolSMS');

echo "Sent to: " . $result['recipients'] . " recipients\n";
echo "Total credits used: " . $result['credits_used'] . "\n";


Python Integration

import requests

def send_sms(phone, message, api_key, sender="YoolaSMS"):
    url = "https://yoolasms.com/api/v1/send.php"
    payload = {
        "phone":   phone,
        "message": message,
        "api_key": api_key,
        "sender":  sender,
    }
    response = requests.post(url, json=payload, timeout=30)
    return response.json()

# Single SMS
result = send_sms("0704487563", "Your payment of UGX 50,000 was received. Thank you!", "YOUR_API_KEY")
print(f"Status: {result['status']}")
print(f"Credits used: {result['credits_used']}")
print(f"Remaining balance: {result['balance']}")

# Bulk to Uganda + Kenya in one call
phones = "0704487563,0772727716,+254712345678"
result = send_sms(phones, "Flash sale! 30% off all items today only. Visit our store.", "YOUR_API_KEY", "ShopAlert")
print(f"Sent to {result['recipients']} recipients across Uganda and Kenya")


JavaScript / Node.js Integration

const axios = require('axios');

async function sendSMS(phone, message, apiKey, sender = 'YoolaSMS') {
  const response = await axios.post('https://yoolasms.com/api/v1/send.php', {
    phone, message, api_key: apiKey, sender
  }, {
    headers: { 'Content-Type': 'application/json' },
    timeout: 30000,
  });
  return response.data;
}

// Usage
(async () => {
  // OTP / transactional
  const otp = Math.floor(100000 + Math.random() * 900000);
  const result = await sendSMS(
    '0704487563',
    `Your verification code is ${otp}. Do not share it. Expires in 5 minutes.`,
    'YOUR_API_KEY',
    'MyApp'
  );
  console.log('OTP sent:', result.status, '| Credits:', result.credits_used);

  // Bulk marketing
  const customers = ['0701111111', '0772222222', '0756333333'].join(',');
  const bulk = await sendSMS(
    customers,
    'New arrivals are here! Visit yoolasms.com to shop. Reply STOP to unsubscribe.',
    'YOUR_API_KEY',
    'ShopAlert'
  );
  console.log(`Bulk sent to ${bulk.recipients} customers`);
})();


2. Check Balance

GET https://yoolasms.com/api/v1/balance.php?api_key=YOUR_KEY

{
  "status": "success",
  "balance": 1247,
  "amount": 43645
}


3. Schedule an SMS

POST https://yoolasms.com/api/v1/schedule_sms.php

{
  "phone": "0704487563,0772727716",
  "message": "Reminder: SACCO meeting tomorrow at 10AM at our Kampala office.",
  "api_key": "YOUR_API_KEY",
  "schedule_time": "2026-07-04 09:00:00"
}

Perfect for fee reminders, appointment confirmations, or any time-sensitive campaign.


Sending to East Africa and International Numbers

Just use the international format — the API detects the country automatically:

// Uganda
sendSMS('0704487563', $message, $apiKey);       // 1 credit

// Kenya (Safaricom, Airtel Kenya)
sendSMS('+254712345678', $message, $apiKey);    // 3 credits

// Tanzania (Vodacom, Airtel)
sendSMS('+255756123456', $message, $apiKey);    // 3 credits

// Rwanda
sendSMS('+250785123456', $message, $apiKey);    // 4 credits

// UK
sendSMS('+447384014597', $message, $apiKey);    // 12 credits

// UAE
sendSMS('+971557396056', $message, $apiKey);    // 8 credits

Mix Uganda and international numbers in one bulk call — credits are calculated per number automatically.


Error Handling

Always check status in the response:

$result = sendSMS($phone, $message, $apiKey);

switch ($result['status']) {
    case 'success':
        // Deduct credits, log the send, notify user
        logSMSSent($result['recipients'], $result['credits_used']);
        break;

    case 'insufficient_fund':
        // Trigger a top-up alert to the account owner
        notifyLowBalance($result['balance']);
        break;

    case 'invalidkey':
        // API key is wrong or revoked
        throw new Exception('Invalid Yoola SMS API key');

    case 'missing':
        // Required field missing in your request
        throw new Exception('Missing phone, message, or api_key');

    default:
        // Network error or AT gateway issue — retry with backoff
        retryAfterDelay();
}


Real World Example: School Fee Reminder System

Here's a complete mini-system that reads students from a database and sends fee reminders:

<?php
// school_fee_reminders.php — run daily via cron

$api_key = 'YOUR_YOOLA_API_KEY';
$due_date = date('j F Y', strtotime('+7 days'));

// Get students with outstanding fees
$students = $pdo->query("
    SELECT s.parent_phone, s.student_name, f.amount_due
    FROM students s
    JOIN fees f ON s.id = f.student_id
    WHERE f.paid = 0 AND f.due_date <= DATE_ADD(NOW(), INTERVAL 7 DAY)
")->fetchAll(PDO::FETCH_ASSOC);

$sent = 0;
$failed = 0;

foreach ($students as $student) {
    $message = "Dear Parent, {$student['student_name']}'s fees of UGX " 
             . number_format($student['amount_due']) 
             . " are due by {$due_date}. Pay via MTN MoMo to 256704484563. "
             . "Questions? Call +256 704 484 563.";

    $result = sendSMS($student['parent_phone'], $message, $api_key, 'SchoolSMS');

    if ($result['status'] === 'success') {
        $sent++;
    } else {
        $failed++;
        error_log("SMS failed for {$student['parent_phone']}: {$result['message']}");
    }

    // Small delay to avoid overwhelming the API
    usleep(100000); // 0.1 second between sends
}

echo "Done. Sent: $sent | Failed: $failed\n";

Run this as a cron job every Monday morning and your school never misses a fee reminder again.


Get Started in 3 Steps

  1. Create a free account — takes 60 seconds, no credit card
  2. Top up via MTN MoMo or Airtel Money (dial the prompt on your phone)
  3. Copy your API key and paste it into the code above — you're live

3 free SMS are included with every new account so you can test delivery before loading credits.


What's Available in the API

Endpoint Description
POST /send.php Send single or bulk SMS
GET /balance.php Check credit balance
POST /schedule_sms.php Schedule for future delivery
GET /inbox.php Read inbound SMS
GET /delivery_report.php Check delivery status
POST /airtime-send.php Send airtime to any number (coming soon)

Full docs: yoolasms.com/api-integration


Why Developers Choose Yoola SMS

Pay with Mobile Money — no VISA card, no USD, no forex headaches

Credits never expire — load once, use anytime

Same API for Uganda + East Africa + International — one integration, 40+ countries

Real-time delivery reports — know exactly who received your message

Webhook support — get callbacks when messages are delivered or fail

Kampala-based support — WhatsApp us on +256 704 484 563 in your timezone


Community & Support

Got questions about the integration? Post in our Community Q&A — our team responds within a few hours, and your question helps the next developer too.


Built in Uganda 🇺🇬 · Serving East Africa and beyond · yoolasms.com

Tags: #Uganda #Africa #SMS #API #PHP #Python #JavaScript #Developer #EastAfrica #MobileFirst