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
POST /v1/messages/send
curl -X POST "https://api.Omkun Chat.com/v1/messages/send" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"to": "919876543210",
"type": "template",
"template": {
"name": "order_confirmation",
"language": "en_US",
"components": [
{
"type": "body",
"parameters": [
{ "type": "text", "text": "Arjun" },
{ "type": "text", "text": "ORD-10293" }
]
}
]
}
}'