Connect Thikaa to n8n, Make.com, Zapier or any CRM using the Messaging REST API and signed webhooks. Receive messages from WhatsApp, Instagram, Messenger, Telegram and TikTok inside your workflows — and send replies back — with no custom server.
Thikaa exposes every connected channel through one simple REST API plus signed webhooks. Any tool that can call an HTTP URL can talk to it — so you plug Thikaa into your automations exactly like any other app:
Works with: n8nMake.comZapier HubSpotSalesforceGoogle Sheets any HTTP tool
tk_live_ and is shown once. Keep it secret.Your base URL (contains your store id):
https://thikaa.com/<your-store>/api/messaging/
On your key in the Messaging API page, set an HTTPS webhook URL (your n8n / Make / Zapier catch URL). Every incoming customer message is POSTed to it as JSON:
POST <your webhook URL>
X-Thikaa-Event: message.received
X-Thikaa-Signature: sha256=<hmac>
{
"event": "message.received",
"instance_id": "inst_xxx",
"timestamp": "2026-07-17T12:00:00Z",
"data": {
"channel": "wd",
"conversation_id": 12345,
"message_id": 67890,
"from": "+201234567890",
"text": "Hello, is this available?",
"attachments": []
}
}
Each request is signed with your key's signing secret. Compute HMAC-SHA256(raw_body, secret) and compare to the X-Thikaa-Signature header to confirm it really came from Thikaa.
From your workflow, POST to the send endpoint with your key as a Bearer token:
curl -X POST "https://thikaa.com/<your-store>/api/messaging/?action=send" \
-H "Authorization: Bearer tk_live_xxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"channel": "wd",
"to": "+201234567890",
"message": "Thanks! Yes it is in stock ✅"
}'
{{$json.body}} with your signing secret, and an IF node comparing it to the signature header..../api/messaging/?action=send, Header Auth Authorization: Bearer tk_live_..., JSON body {channel,to,message}.Authorization: Bearer tk_live_..., body type Raw / JSON with {channel,to,message}.Authorization: Bearer tk_live_... and JSON payload {channel,to,message}.Combine the two directions to sync Thikaa with your CRM through n8n / Make / Zapier:
from → phone, text → note).Create your first key in Bot Hub → Messaging API, then follow the recipe for your tool above. Need a hand? Message us on WhatsApp from the site.