Direct-to-carrier routing designed for mission-critical applications. Turbo Mail delivers your alerts, OTPs, and invoices with 99.9% success rates across Kenya.
Integrate in minutes with our RESTful API. Fully compatible with MikroTik, Splynx, and custom SaaS platforms for automated billing alerts.
Messages are processed through direct Tier-1 carrier tunnels, bypassing standard congestion to ensure your OTPs arrive within seconds.
No setup fees. No hidden taxes. Experience a flat rate of 0.36 KES per SMS with detailed delivery logs for every single cent spent.
Integrate Turbo Mail Sender into your application in less than 5 minutes.
All requests should be sent via POST to our global endpoint. Ensure your server allows outbound traffic on port 443.
https://turbosystems.top/api/send.php
Include your unique X-API-TOKEN in your request headers or POST body to authorize the transmission.
| Field | Type | Description |
|---|---|---|
api_key | String | Your secret token. |
to | String | Recipient (254...). |
message | String | SMS Body text. |
<?php // Turbo Mail PHP SDK Example $url = "https://turbosystems.top/api/send.php"; $data = [ 'api_key' => 'YOUR_SECRET_TOKEN', 'to' => '254700000000', 'message' => 'Hello from Turbo Mail API!' ]; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); $response = curl_exec($ch); echo $response; ?>
Available in PHP, Python, Node.js, and Java.