Bulk SMS API
Lineserve's Bulk SMS API allows you to send high volumes of SMS messages programmatically.
Features
- Send SMS to single or multiple recipients
- Schedule messages for future delivery
- Get delivery reports
- Manage contacts and groups
Getting Started
Authentication
All API requests require an API key. Learn about authentication.
Base URL
https://api.lineserve.com/v1/sms
Example Request
const response = await fetch('https://api.lineserve.com/v1/sms/send', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
to: ['+254712345678'],
message: 'Hello from Lineserve!',
sender_id: 'LINESERVE'
})
});
Endpoints
Send SMS
Details about sending SMS will be added soon.
Check Balance
Details about checking account balance will be added soon.
Delivery Reports
Details about accessing delivery reports will be added soon.