Open API, not a closed directory

Connect Fliok to Anything You Run

Fliok does not ship one-click connectors for individual storefronts or CRMs. It ships a documented REST API and signed webhooks, so you can wire WhatsApp into whatever you already use โ€” including software nobody else has built a connector for.

We would rather be honest about that than list logos we do not support.

What Fliok Connects To Today

The complete list. If it is not here, it is not built โ€” and you can still reach it yourself through the REST API and webhooks.

๐Ÿ’ฌ

Meta Cloud API

WhatsApp

Your number runs on the official WhatsApp Business Platform. Connect it through embedded signup โ€” no unofficial gateway in the middle.

๐Ÿ”Œ

REST API

Build your own

Send messages and media, read conversations, messages, contacts and templates, and create templates from your own systems.

๐Ÿ“ก

Outbound Webhooks

Build your own

Inbound messages and delivery-status changes POSTed to your server in real time, each signed with HMAC-SHA256.

๐Ÿ”‘

API Keys

Build your own

Issue scoped Bearer keys per integration, give them an expiry date, watch when they were last used, and revoke instantly.

๐Ÿ“ฃ

Click-to-WhatsApp Ads

Meta

Leads from your Meta click-to-WhatsApp ads arrive with their ad referral data attached, so the lead is never anonymous.

๐Ÿ“„

CSV Import & Export

Data

Move contact lists in and out of Fliok as CSV โ€” the simplest bridge to a CRM or spreadsheet that has no API of its own.

๐Ÿ’ณ

Razorpay

Billing

Powers your Fliok subscription payment only. It does not collect payments from your customers inside WhatsApp.

What the API gives you

Everything the Dashboard Does

The public API is the same surface the product runs on โ€” not a cut-down export.

Send from anywhere

POST a text, template, image, document or interactive message from your backend, your CRM, or a cron job. Media uploads go through the same API.

Read what happened

Cursor-paginated reads for messages, conversations, contacts and templates โ€” including per-message delivery status by id or wamid.

Get pushed, not polled

Register a webhook endpoint and receive signed events โ€” inbound messages, delivery status, failures, template decisions, new contacts, conversation windows and finished broadcasts โ€” as they happen, with retries on failure.

Verify every delivery

Each webhook carries an HMAC-SHA256 signature over the timestamp and raw body, so you can prove the payload came from us.

REST API

Send Your First Message in One Request

Issue an API key from your dashboard, then call the endpoint below. Predictable JSON in, predictable JSON out.

Send a WhatsApp Message
POST /api/v1/send
Authorization: Bearer wa_your_api_key
Content-Type: application/json

{
  "to": "+919876543210",
  "type": "text",
  "text": "Hi Rahul! Your order is ready."
}

Response 200 OK

{ "id": "โ€ฆ", "status": "queued" }

Note: a text message can only be sent inside an open 24-hour customer service window. Outside it, send an approved template โ€” the same endpoint takes type: "template".

How to Wire It Up

Three steps, and your systems are talking to WhatsApp.

STEP 01

Issue an API Key

Create a Bearer key in the dashboard, pick its role, and optionally give it an expiry date. Copy it once โ€” it is never shown again.

STEP 02

Call the API

Send messages and media, or read conversations, contacts and templates, straight from your own backend.

STEP 03

Receive Webhooks

Register your endpoint and Fliok pushes inbound messages and delivery statuses to you, signed so you can verify them.

Request an Integration

Want a Turnkey Connector?

Tell us which tool you need Fliok to talk to natively. We prioritise native connectors by demand โ€” and in the meantime we are happy to help you build it against the API.

Start Building Today

Get started for free and issue your first API key in minutes.

Fliok - WhatsApp Business Platform