🚀 Baileys WhatsApp API Dashboard

-
Total Sessions
-
Active Sessions
-
Total Messages
-
API Calls (24h)

🔑 Quick Start

API Base URL: http://localhost:3001

Authentication: Use your API key in the X-API-Key header

Documentation: Interactive API Documentation

📱 Sessions

Loading sessions...

🔗 Example API Calls

Create a new session:

POST /api/sessions
Content-Type: application/json
X-API-Key: YOUR_API_KEY

{
  "sessionId": "my-session-1",
  "usePairingCode": false
}

Send a message:

POST /api/messages/my-session-1/send
Content-Type: application/json
X-API-Key: YOUR_API_KEY

{
  "to": "1234567890@s.whatsapp.net",
  "content": {
    "text": "Hello from Baileys API!"
  }
}