Active Clients
Messages Sent
Uptime
Delivery
Everything you need to send SMS messages at scale with reliability and ease
Easy-to-integrate REST API with comprehensive documentation and code examples.
Send thousands of SMS messages in seconds with our high-speed delivery network.
Real-time delivery reports and analytics for all your SMS campaigns.
Bank-level encryption and secure API authentication for your data protection.
Built-in OTP generation and verification system for secure authentication.
Organize contacts into groups and manage your recipient lists efficiently.
Our SMS Gateway serves businesses across various sectors
Order confirmations, shipping updates, and promotional campaigns.
Appointment reminders, test results, and health alerts.
Exam schedules, results notifications, and announcements.
Transaction alerts, OTP verification, and account updates.
Promotional campaigns, offers, and customer engagement.
Delivery updates, tracking info, and driver notifications.
Booking confirmations, check-in reminders, and guest services.
User verification, notifications, and security alerts.
Pay as you go that fits your messaging needs
All plans include:
Get started in minutes with our easy-to-use REST API
Create your account and receive your unique API credentials instantly.
Use our comprehensive documentation to integrate SMS into your application.
Begin sending SMS messages worldwide with just a few lines of code.
<?php
$api_key = "your_api_key";
$sender = "ServerLanka";
$phone = "+94771234567";
$message = "Hello! Your OTP is 123456";
$url = "https://api.serverlanka.lk/sms/send";
$data = array(
'api_key' => $api_key,
'sender' => $sender,
'phone' => $phone,
'message' => $message
);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>