API Infrastructure/REST API v1.0 & Webhooks
Developer API Keys & Webhook Hub
Integrate NAT CPaaS directly into your backend architecture. Access production credentials, configure delivery report (DLR) webhooks, and generate instant API requests.
Gateway: 24ms Latency|99.99% Uptime
Live Production API Key
Full programmatic authorization token for SMS dispatch, WhatsApp WABA management, and payment workflows.
Live Token Active
Key Scope & Permissions:Full CPaaS Admin AccessRead / Write across all APIs
Throughput & Rate Limit:1,000 Requests / SecBurst allowance up to 2,500 req/s
IP Allowlist Filter:0.0.0.0/0 (Global)Restricted CIDR available on Enterprise tier
Delivery Reports (DLR) & Webhook Hub
Receive asynchronous HTTP POST webhooks for carrier delivery statuses, read receipts, and inbound WhatsApp messages.
Quick Code Generator & Sandbox Request Builder
Copy ready-to-run API snippets with dynamic parameter insertion and authentication tokens.
POST /api/v1/sms/send
CURLcurl -X POST https://api.newagetechnology.co.in/api/v1/sms/send \
-H "Authorization: Bearer nat_live_9f82a1c7b844901e9d38c47f9e8a021408b31a89c9e821fa" \
-H "Content-Type: application/json" \
-d '{
"sender_id": "NATENG",
"dlt_template_id": "1107161582910482910",
"message": "Your NAT authentication OTP is 492019. Valid for 10 minutes. Please do not share.",
"recipients": ["+919876543210", "+919812345678"],
"callback_url": "https://api.enterprise-app.com/webhooks/nat-dlr"
}'Sample 200 OK Response Payload:HTTP 200 OK
{
"success": true,
"batch_id": "sms_batch_90214819",
"total_dispatched": 2,
"estimated_cost": 0.28,
"status": "QUEUED_CARRIER",
"created_at": "2026-09-12T09:28:40Z"
}