High-Performance
SMS Gateways

Direct-to-carrier routing designed for mission-critical applications. Turbo Mail delivers your alerts, OTPs, and invoices with 99.9% success rates across Kenya.

LATENCY: 0.02ms
START SENDING NOW
Connectivity

Enterprise API

Integrate in minutes with our RESTful API. Fully compatible with MikroTik, Splynx, and custom SaaS platforms for automated billing alerts.

Performance

Flash Delivery

Messages are processed through direct Tier-1 carrier tunnels, bypassing standard congestion to ensure your OTPs arrive within seconds.

Financials

Transparent Cost

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.

Developer Documentation

Integrate Turbo Mail Sender into your application in less than 5 minutes.

1. Connection Endpoint

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
2. Authentication

Include your unique X-API-TOKEN in your request headers or POST body to authorize the transmission.

3. Parameters
Field Type Description
api_keyStringYour secret token.
toStringRecipient (254...).
messageStringSMS Body text.
Sample_Integration.php
<?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.