Version 1.0.O
RazaEngageAPI Documentation
Build powerful messaging solutions with our enterprise-grade REST APIs. Send SMS messages to customers worldwide with just a few lines of code.
Fast Integration
Get started in under 5 minutes with simple REST APIs
Enterprise Security
Token-based authentication with HTTPS encryption
Global Reach
Send messages to 200+ countries worldwide
Base URL
https://papi.razaengage.com
All API requests must be made over HTTPS. Calls made over plain HTTP will fail.
Quick Start - Send Your First SMS
Before you begin
You'll need an API token. Get yours from the Customer HTTP Connection settings, or sign up for an account.
⌘cURL
curl -X POST https://papi.razaengage.com/SendSmsV2 \
-H "Content-Type: application/json" \
-d '{
"apiToken": "YOUR_API_TOKEN",
"messageType": "1",
"messageEncoding": "1",
"destinationAddress": "918744815388",
"sourceAddress": "SENDER",
"messageText": "Hello from RazaEngage!"
}'