SMS API

Send and receive text messages worldwide with our high-throughput SMS gateway. Perfect for notifications, marketing, and alerts.

  • Global coverage across 200+ countries
  • Delivery receipts and status callbacks
  • Unicode and long message support
  • Smart routing for best delivery rates
  • Sender ID customization
POST /v1/sms/send { "to": "+1234567890", "from": "MyApp", "text": "Your code is 4821", "callback_url": "https://..." } Response: 200 OK { "id": "msg_9f8a7b6c", "status": "queued", "cost": 0.0075 }

Voice API

Build powerful voice experiences with programmable calls. Create IVR menus, broadcast voice messages, and manage call flows.

  • Text-to-Speech in 40+ languages
  • Outbound and inbound call handling
  • Interactive Voice Response (IVR)
  • Call recording and transcription
  • Conference calling
POST /v1/voice/call { "to": "+1234567890", "from": "+1987654321", "actions": [ { "say": "Hello! Press 1..." }, { "gather": { "digits": 1 } }, { "play": "hold_music.mp3" } ] } Response: 200 OK { "call_id": "call_3d2e1f", "status": "ringing" }

Verification API

Protect your users with one-time passwords delivered via SMS, Voice, or WhatsApp. Reduce fraud and verify identities seamlessly.

  • OTP via SMS, Voice, WhatsApp
  • Automatic code generation
  • Configurable expiry and length
  • Built-in fraud detection
  • Fallback channel support
POST /v1/verify/start { "to": "+1234567890", "channel": "sms", "code_length": 6, "expiry": 300 } POST /v1/verify/check { "request_id": "vrf_a1b2c3", "code": "482901" } Response: { "valid": true }

Number Lookup

Validate phone numbers in real-time. Check carrier, line type, and reachability before sending messages to reduce costs.

  • Real-time HLR lookup
  • Carrier and network detection
  • Number portability check
  • Format validation
  • Bulk lookup support
GET /v1/lookup/+1234567890 Response: 200 OK { "number": "+1234567890", "valid": true, "carrier": "T-Mobile", "type": "mobile", "country": "US", "ported": false, "reachable": "reachable" }

Easy Integration

Official SDKs and plugins for all major platforms

Python
Node.js
PHP
Java
Ruby
Go
C#
cURL