Developer First

Build powerful WhatsApp experiences.

Use our robust RESTful API to send session messages, trigger template broadcasts, and manage your Kanban CRM programmatically. Everything you need, built for scale.

  • Real-time Webhooks for incoming messages
  • Send Interactive Buttons & Lists natively
  • 99.99% Uptime powered by Meta Cloud API
Generate API Key Read Full Docs
POST /v1/messages/send
curl -X POST "https://api.omkun.com/v1/messages/send" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "918447815135",
    "type": "template",
    "template": {
        "name": "order_confirmation",
        "language": "en_US",
        "components": [
            {
                "type": "body",
                "parameters": [
                    { "type": "text", "text": "Arjun" },
                    { "type": "text", "text": "ORD-10293" }
                ]
            }
        ]
    }
}'