0/0
Connected Accounts
0
Active API Keys
0
Messages Sent
0
Failed Messages

Account Status

Manage →

No accounts added yet.

Add WhatsApp Account

Recent Messages

View All →

No messages sent yet.

Quick API Reference

REST API
POST
/api/v1/send
Send single message
POST
/api/v1/send-bulk
Send multiple messages
POST
/api/v1/send-rotate
Rotate across accounts
GET
/api/v1/accounts
List connected accounts
GET
/api/v1/health
Health check
Example: ASP Classic Integration
' ASP Classic - Send WhatsApp message via API
Dim objHttp, strResponse
Set objHttp = Server.CreateObject("MSXML2.ServerXMLHTTP.6.0")

objHttp.Open "POST", "http://YOUR_SERVER:3000/api/v1/send", False
objHttp.setRequestHeader "Content-Type", "application/json"
objHttp.setRequestHeader "X-Api-Key", "wk_YOUR_API_KEY_HERE"

Dim strBody
strBody = "{""phone"":""923001234567"",""message"":""Hello from ERP!""}"
objHttp.send strBody

strResponse = objHttp.responseText
Response.Write strResponse