WhatsApp Gateway
Select a chat to start messaging
0:00

Contact Info

WhatsApp Connection
Checking...
QR Code Scan with WhatsApp
API Key
Your API key for programmatic access:
Tenant Profile
Manage your account details.
Account Info
Tenant ID
Created
Webhook Configuration
Forward incoming WhatsApp messages to your external service in real-time.
Events
Your endpoint receives POST requests for these events:
message.received — Incoming message (DM or group)
message.sent — Outgoing message sent by you
message.ack — Delivery/read receipt update
message.revoked — Message deleted by sender
group.join — Someone joined a group
group.leave — Someone left a group
session.ready — WhatsApp session connected
session.disconnected — Session disconnected
Payload Format
{
  "event": "message.received",
  "timestamp": 1710000000,
  "tenantId": "your-tenant-id",
  "data": {
    "id": "message-id",
    "chatId": "919876543210@c.us",
    "from": "919876543210@c.us",
    "body": "Hello",
    "type": "chat",
    "hasMedia": false,
    "isGroup": false,
    "fromMe": false,
    "notifyName": "John",
    "author": null,
    "timestamp": 1710000000
  }
}
If a webhook secret is set, the header x-webhook-signature will contain an HMAC-SHA256 signature of the payload.