Multi-tenant control panel for managing WhatsApp clients, running bulk campaigns, powering your apps via REST API, and automating replies — all in one place.
Everything included
From a single client to a full multi-tenant operation — manage, automate, and monitor every WhatsApp interaction from one panel.
Connect and manage multiple WhatsApp numbers under one admin account. Monitor real-time connection status, scan QR codes from the dashboard, and route outgoing messages automatically across your clients.
Send text, media (URL or upload), and button messages from any app via a clean JSON API. Secure per-key with domain + IP whitelisting.
Schedule campaigns against phonebook lists. Messages rotate sequentially across selected sender clients for reliable, even delivery.
Import contacts via Excel, organise them into phonebooks, and target specific lists in campaigns — full CRUD from the admin panel.
Define keyword rules with custom reply text or media. Incoming messages matching a rule get an instant automatic response — no code needed.
SuperAdmin approves registrations, assigns plans, and has cross-tenant visibility. Each admin workspace stays fully isolated.
Onboarding flow
From registration to your first sent message in minutes.
Create your account and choose a plan. Your registration goes to SuperAdmin for review.
SuperAdmin activates your account. A default API key is generated automatically on activation.
Add a client, scan the QR with your phone, and your number is live within seconds.
Use the dashboard for campaigns and chat, or call the REST API from your own application.
Developer-friendly API
Trigger WhatsApp messages from your CRM, e-commerce platform, or custom workflow via a simple REST API — no WhatsApp SDK on your end.
// Send a WhatsApp text message const res = await fetch("https://your-domain.com/api/send-text", { method: "POST", headers: { "Content-Type": "application/json", "x-api-key": "sk_live_••••••••••••" }, body: JSON.stringify({ phone: "919876543210", message: "Hello! Your order #1042 is confirmed ✅" }) }); // ── Response ────────────────────────── { "ok": true, "client": "9198765XXXXX@s.whatsapp.net", "msgId": "3EB0C8A4F2D1..." }