Sender
Welcome back, Admin! 👋
Your WhatsApp Gateway is running smoothly. Monitor your device sessions and queue status in real-time.
Total Devices
0
Online Devices
0
Active Queues
0
Device Management
Connect, list, and manage your WhatsApp sessions.
Connect New Device
Generate a unique QR code for your device session. Use a descriptive ID for easier management.
QR Code area
Connected Devices
Loading devices...
API Documentation
Integrating with your WhatsApp Gateway.
POST
/wa/send
Send a text message. High priority (OTP/Notif).
curl -X POST {{url}}/wa/send \
-H "Content-Type: application/json" \
-H "x-service-key: {{key}}" \
-d '{
"device_id": "sales",
"jid": "628123456789",
"text": "Hello World"
}'
POST
/wa/send-media
Send images or documents. Supports image, video, document.
curl -X POST {{url}}/wa/send-media \
-H "Content-Type: application/json" \
-H "x-service-key: {{key}}" \
-d '{
"device_id": "sales",
"jid": "628123456789",
"type": "image",
"url": "https://example.com/img.jpg",
"caption": "Check this out"
}'
POST
/wa/send-broadcast
Send to multiple recipients with random delay.
curl -X POST {{url}}/wa/send-broadcast \
-H "Content-Type: application/json" \
-H "x-service-key: {{key}}" \
-d '{
"device_id": "sales",
"recipients": [
{ "jid": "6281...", "text": "Promo 1" },
{ "jid": "6282...", "text": "Promo 2" }
]
}'
POST
/wa/groups
Fetch all groups a device is part of.
{
"device_id": "your_device_id"
}
GET
/wa/status
Get status of all devices (No auth required).
// Returns list of devices and connection status
POST
/wa/regenerate-key
Regenerate the Service Key. Invalidates old key immediately.
// No body required
Auth Header: x-service-key: ...