Multi-tenant · Personal WhatsApp · Unified API

WhatsApp automation,
without the Cloud API.

Scan your personal WhatsApp once. Then send transactional messages from any of your apps through a single REST API — keyed by your phone number.

One API per tenant

The same endpoint serves everyone. We route by whatsapp_number.

Tenant-isolated

Hashed API keys, row-level security, per-key request logs.

Text + media

Send plain messages or attach images, PDFs and docs as base64.

Drop-in REST API

Same endpoint for every tenant. The whatsapp_number field selects the account.

POST /api/public/sendcURL
curl -X POST https://your-app/api/public/send \
  -H "Authorization: Bearer lv_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "whatsapp_number": "+15551234567",
    "to": "+15557654321",
    "text": "Your OTP is 482910",
    "media": {
      "base64": "iVBORw0KGgo...",
      "mime": "image/png",
      "filename": "receipt.png"
    }
  }'

Ship your first message in minutes

  • 1Sign up and create an account
  • 2Add your WhatsApp number, scan the QR
  • 3Create an API key, start POSTing