๐Ÿ” Chennai Web Stores

๐Ÿ“ฑ WhatsApp API Dashboard

Welcome to WhatsApp API Dashboard

๐Ÿ“‹ Getting Started

1. Go to WhatsApp โ†’ Add Number โ†’ Connect & scan QR code.

2. Go to Chatbot โ†’ Add keyword auto-reply rules.

3. Use API Docs to send messages from external apps.

4. Click ๐Ÿ”” Webhook on any connected number to receive inbound messages and status changes on your own server.

๐Ÿ”‘ Default Login

Username: admin | Password: admin123

โš ๏ธ Please change your password after first login!

WhatsApp Numbers

Loading...

Chatbot Configuration

Loading...

๐Ÿ“š API Documentation

Send Message

Send a WhatsApp message from any external application using API keys.

POST /api/whatsapp/:id/send

Headers

Content-Type: application/json x-api-key: YOUR_API_KEY x-secret-key: YOUR_SECRET_KEY

Body

{ "recipient": "919876543210", "message": "Hello from API!" }

Note: recipient = phone number without + symbol

๐Ÿ”” Webhooks

Configure a webhook URL on any WhatsApp number (via the ๐Ÿ”” Webhook button on the WhatsApp page) to receive real-time events on your own server.

Events

message โ€” inbound message received

message.sent โ€” outbound message sent via the API

chatbot.reply โ€” an auto-reply rule fired

connection.open / connection.close โ€” connection status changed

Payload

{ "event": "message", "whatsapp_id": 3, "timestamp": "2026-07-17T10:15:00.000Z", "data": { "from": "919876543210@s.whatsapp.net", "message_id": "ABCD1234", "text": "Hello!", "timestamp": 1752745000, "push_name": "John" } }

Verifying requests

Every request includes an X-Webhook-Signature header: HMAC-SHA256 of the raw JSON body, signed with that number's Secret Key. Recompute it on your end and compare to confirm the request is genuine.

User Management

Loading...