99.9% API Uptime

Send Real-Time Notifications via Our Global SMS API

Developer-first transactional messaging platform. Deliver alerts, OTPs, and critical notifications to 180+ countries with enterprise reliability.

GDPR Compliant
A2P Routes
Webhook Support
QUICK START
curl -X POST https://api.landomas.com/v1/sms \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "+1234567890",
    "message": "Your order has shipped!",
    "callback_url": "https://your-app.com/webhook"
  }'

// Response
{
  "message_id": "msg_abc123xyz",
  "status": "queued",
  "cost": 0.0045
}
180+
Countries
99.9%
Uptime SLA
<3s
Avg Delivery
24/7
API Support

Built for Mission-Critical Communications

Trusted by fintech, e-commerce, logistics, and enterprise platforms

Banking & Finance

Transaction alerts, fraud warnings, OTP authentication, balance notifications

Logistics & Delivery

Real-time tracking updates, delivery confirmations, driver assignments

E-Commerce

Order confirmations, shipping updates, return processing, inventory alerts

Appointments

Booking confirmations, reminders, cancellations, rescheduling notifications

IoT & Monitoring

System alerts, sensor triggers, maintenance notifications, threshold warnings

Internal Systems

Employee OTPs, access codes, security alerts, system status updates

Healthcare

Appointment reminders, prescription alerts, test results, emergency notifications

SaaS Platforms

Account activity, usage limits, billing updates, system maintenance alerts

Developer-First Infrastructure

Enterprise-grade reliability with simple integration

RESTful JSON API

Clean, predictable API design with comprehensive documentation. HTTPS-only with JWT/HMAC authentication.

  • Send SMS endpoint
  • Delivery status tracking
  • Balance & usage API
  • Webhook callbacks

Global A2P Routes

Multi-country carrier partnerships with A2P-compliant direct connections and intelligent routing.

  • 180+ country coverage
  • Tier-1 carrier direct routes
  • Auto-failover routing
  • DND registry compliance

Security & Compliance

Enterprise-grade security with full GDPR and DPA compliance. Encrypted transmission and storage.

  • GDPR & DPA compliant
  • TLS 1.3 encryption
  • IP whitelisting
  • Full audit logs

Auto-Retry & Queueing

Intelligent retry logic and message queueing ensure delivery even during carrier issues.

  • Smart retry algorithm
  • Priority queueing
  • Rate limiting control
  • Batch sending support

Web Dashboard

Comprehensive dashboard for API management, analytics, and message monitoring.

  • API key management
  • Real-time analytics
  • Message logs & search
  • Billing & usage reports

SDKs & Libraries

Official SDKs and code examples for faster integration in your preferred language.

  • Node.js SDK
  • Python SDK
  • PHP SDK
  • API reference docs

Simple, Powerful API

Get started in minutes with our comprehensive documentation

Send SMS

POST https://api.landomas.com/v1/sms
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "to": "+1234567890",
  "message": "Your OTP is 123456",
  "callback_url": "https://example.com/hook"
}

Python Example

import requests

response = requests.post(
    'https://api.landomas.com/v1/sms',
    headers={
        'Authorization': 'Bearer YOUR_API_KEY',
        'Content-Type': 'application/json'
    },
    json={
        'to': '+1234567890',
        'message': 'Your delivery arrives today!'
    }
)

print(response.json())

Response

{
  "message_id": "msg_abc123xyz",
  "status": "queued",
  "to": "+1234567890",
  "cost": 0.0045,
  "segments": 1,
  "created_at": "2025-10-28T10:30:00Z"
}

Node.js Example

const axios = require('axios');

const sendSMS = async () => {
  const response = await axios.post(
    'https://api.landomas.com/v1/sms',
    {
      to: '+1234567890',
      message: 'Your order #12345 has shipped!'
    },
    {
      headers: {
        'Authorization': 'Bearer YOUR_API_KEY'
      }
    }
  );
  
  console.log(response.data);
};

sendSMS();

Check Delivery Status

Track message delivery in real-time

GET /v1/sms/{message_id}

Get Account Balance

Check remaining credits and usage

GET /v1/account/balance

Webhook Delivery Reports

Receive real-time delivery callbacks

POST your-domain.com/webhook

Transparent, Pay-As-You-Go Pricing

No hidden fees. No monthly commitments. Pay only for messages sent.

Per-Message Pricing

$0.0045

per SMS segment (160 characters)

United States $0.0045 / SMS
United Kingdom $0.0052 / SMS
European Union $0.0048 / SMS
Asia-Pacific $0.0055 / SMS