Cliqtel
  • Products
    Infrastructure
    Virtual NumbersLocal, mobile, toll-free in 70+ countries SIP TrunksCarrier-grade SIP for any PBX Travel data (eSIM)Mobile data in 200+ countries, no roaming
    Communications
    MessagingTwo-way SMS and WhatsApp templates Cloud Phone SystemVisual call flows, IVR, queues, CRM pop Contact CenterAdvanced routing & AI — early access
    Partners & AI
    Cliqtel ConnectWhite-label platform for MSPs AI Access (MCP)AI-operable telecom for agents & copilots
  • Solutions
    By team
    Remote TeamsOne business number for a distributed team Support TeamsQueues, IVR and shared inboxes for support Sales TeamsClick-to-call, CRM pop and local caller ID
    Explore
    CoverageNumbers and rates across 70+ countries IntegrationsConnect your PBX, CRM and tools
  • Pricing
    Pricing & plans
    PricingTransparent per-number and usage pricing Coverage & ratesPer-country calling and number rates BundlesPrepaid number + minute bundles
  • Docs
    Get started
    Getting StartedSet up your account and first number API ReferenceREST API for numbers, calls & messaging Call FlowsBuild IVRs and routing visually Help CenterFAQs, guides and troubleshooting
    Guides
    PBX & SIP SetupConnect 3CX, FreePBX, Asterisk & Teams Messaging GuidesSMS and WhatsApp integration guides RegulatoryNumber registration rules by country
  • About
    Company
    About CliqtelWho we are and what we build ContactTalk to our sales or support team PartnersBecome a Cliqtel partner or reseller
    Resources
    BlogProduct news and telecom guides StatusLive platform and network status IntegrationsMarketplace of PBX, CRM & tools
English EN Nederlands NL Deutsch DE Français FR Español ES Português PT العربية AR 中文 ZH 日本語 JA हिन्दी HI
Sign in Order a number
Cliqtel
Products Virtual NumbersLocal, mobile, toll-free in 70+ countries SIP TrunksCarrier-grade SIP for any PBX Travel data (eSIM)Mobile data in 200+ countries, no roaming MessagingTwo-way SMS and WhatsApp templates Cloud Phone SystemVisual call flows, IVR, queues, CRM pop Contact CenterAdvanced routing & AI — early access Cliqtel ConnectWhite-label platform for MSPs AI Access (MCP)AI-operable telecom for agents & copilots
Solutions Remote TeamsOne business number for a distributed team Support TeamsQueues, IVR and shared inboxes for support Sales TeamsClick-to-call, CRM pop and local caller ID CoverageNumbers and rates across 70+ countries IntegrationsConnect your PBX, CRM and tools
Pricing PricingTransparent per-number and usage pricing Coverage & ratesPer-country calling and number rates BundlesPrepaid number + minute bundles
Docs Getting StartedSet up your account and first number API ReferenceREST API for numbers, calls & messaging Call FlowsBuild IVRs and routing visually Help CenterFAQs, guides and troubleshooting PBX & SIP SetupConnect 3CX, FreePBX, Asterisk & Teams Messaging GuidesSMS and WhatsApp integration guides RegulatoryNumber registration rules by country
About About CliqtelWho we are and what we build ContactTalk to our sales or support team PartnersBecome a Cliqtel partner or reseller BlogProduct news and telecom guides StatusLive platform and network status IntegrationsMarketplace of PBX, CRM & tools

Language
EN NL DE FR ES PT AR ZH JA HI
Sign in Get started — free
← Help Center
On this page
Overview Prerequisites Authentication & Scopes 1 — Create an API Key 2 — Find Your Account ID 3 — Send Your First Message 4 — Track Status Next Steps Rate Limits & Errors FAQ

WhatsApp API Quickstart

Messaging · 7 min read Messaging WhatsApp API Developers
What this guide covers: Everything you need to send your first WhatsApp message through the Cliqtel API in minutes — creating a scoped API key, finding your account ID, sending both free-form text and approved templates, and tracking delivery status. Node.js, Python, and cURL examples throughout.

Overview

The Cliqtel WhatsApp API lets you send and receive WhatsApp Business messages programmatically — text, templates, media, location, and interactive messages — all over a single REST endpoint. Every request is authenticated with a scoped API key and returns JSON.

All WhatsApp endpoints live under one base URL:

BASE URL
https://cliqtel.com/api/v1/whatsapp

By the end of this guide you'll have sent a live message and confirmed its delivery. The four steps are: create an API key, find your account ID, send a message, and track its status.

Prerequisites

  • A WhatsApp Business Account connected to Cliqtel — see the WhatsApp setup guide to connect your WABA and register a number.
  • A Cliqtel account with access to the Dashboard (to create API keys).
  • A tool for making HTTP requests — the examples below use Node.js (fetch), Python (requests), and cURL.
No WhatsApp account yet? You need at least one connected and approved WhatsApp Business Account before you can send. Follow the WhatsApp setup guide first, then come back here.

Authentication & Scopes

Every request must include your API key as a Bearer token in the Authorization header:

AUTHORIZATION HEADER
Authorization: Bearer YOUR_API_KEY

API keys carry scopes that determine what they can do. For WhatsApp there are two:

ScopeGrants
whatsapp:readList messages, accounts, and templates
whatsapp:writeSend messages and manage templates

To follow this quickstart you'll need both scopes on your key. All request and response bodies are JSON.

Step 1 — Create an API Key

1Generate a scoped key in the portal

In the Cliqtel portal, go to Dashboard → API Keys and create a new key. When prompted for scopes, grant both:

  • whatsapp:read
  • whatsapp:write
Copy your key immediately. The full key value is shown only once at creation time. Store it in a secret manager or environment variable — never commit it to source control or expose it in client-side code.

Step 2 — Find Your Account ID

2List your connected WhatsApp accounts

Each send needs an account_id — the numeric id of the WhatsApp Business Account you're sending from. List your connected accounts with a GET request:

cURL — LIST ACCOUNTS
curl https://cliqtel.com/api/v1/whatsapp/accounts \
  -H "Authorization: Bearer YOUR_API_KEY"
NODE.JS
const res = await fetch('https://cliqtel.com/api/v1/whatsapp/accounts', {
  headers: { 'Authorization': 'Bearer YOUR_API_KEY' },
});

const accounts = await res.json();
console.log(accounts); // find the numeric "id" you want to send from
PYTHON
import requests

res = requests.get(
    'https://cliqtel.com/api/v1/whatsapp/accounts',
    headers={'Authorization': 'Bearer YOUR_API_KEY'},
)

print(res.json())  # find the numeric "id" you want to send from

Note the numeric id from the account you want to use — that's the account_id you'll pass on every send.

Step 3 — Send Your First Message

3POST to the messages endpoint

Messages are sent with POST /api/v1/whatsapp/messages. The type field decides what you're sending. There are two ways to start:

  • Text (type: "text") — free-form messages, only allowed inside an open 24-hour customer service window.
  • Template (type: "template") — a pre-approved template, used to start a conversation when no window is open.
The 24-hour window rule: WhatsApp only lets you send free-form text within 24 hours of the customer's last message to you. To start a conversation — or to reply after the window has closed — you must send an approved template instead. If you try to send text outside a window, the send is rejected.

Send a text message

Use this inside an open 24-hour window (for example, replying to a customer who just messaged you).

cURL — SEND TEXT
curl -X POST https://cliqtel.com/api/v1/whatsapp/messages \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "account_id": 1,
    "to": "+31611398058",
    "type": "text",
    "text": { "body": "Thanks for reaching out! How can we help?" }
  }'
NODE.JS
const res = await fetch('https://cliqtel.com/api/v1/whatsapp/messages', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    account_id: 1,                 // from Step 2
    to: '+31611398058',
    type: 'text',
    text: { body: 'Thanks for reaching out! How can we help?' },
  }),
});

const data = await res.json();
console.log(data.id, data.status); // message ID, "accepted"
PYTHON
import requests

res = requests.post(
    'https://cliqtel.com/api/v1/whatsapp/messages',
    headers={'Authorization': 'Bearer YOUR_API_KEY'},
    json={
        'account_id': 1,           # from Step 2
        'to': '+31611398058',
        'type': 'text',
        'text': {'body': 'Thanks for reaching out! How can we help?'},
    },
)

print(res.json()['id'], res.json()['status'])

A successful send returns a JSON body with the new message's ID and its initial status:

RESPONSE
{
  "id": 90210,
  "status": "accepted"
}

Send a template message

Use a template to start a new conversation (no open window) or to re-engage a customer. The template must already be approved in your WhatsApp account, and you supply its name, language.code, and any components the template defines.

cURL — SEND TEMPLATE
curl -X POST https://cliqtel.com/api/v1/whatsapp/messages \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "account_id": 1,
    "to": "+31611398058",
    "type": "template",
    "template": {
      "name": "order_update",
      "language": { "code": "en" },
      "components": [{
        "type": "body",
        "parameters": [{ "type": "text", "text": "ORD-4821" }]
      }]
    }
  }'
NODE.JS
const res = await fetch('https://cliqtel.com/api/v1/whatsapp/messages', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    account_id: 1,
    to: '+31611398058',
    type: 'template',
    template: {
      name: 'order_update',
      language: { code: 'en' },
      components: [{
        type: 'body',
        parameters: [{ type: 'text', text: 'ORD-4821' }],
      }],
    },
  }),
});

const data = await res.json();
console.log(data.id, data.status); // message ID, "accepted"
PYTHON
import requests

res = requests.post(
    'https://cliqtel.com/api/v1/whatsapp/messages',
    headers={'Authorization': 'Bearer YOUR_API_KEY'},
    json={
        'account_id': 1,
        'to': '+31611398058',
        'type': 'template',
        'template': {
            'name': 'order_update',
            'language': {'code': 'en'},
            'components': [{
                'type': 'body',
                'parameters': [{'type': 'text', 'text': 'ORD-4821'}],
            }],
        },
    },
)

print(res.json()['id'], res.json()['status'])
Beyond text and templates: The same endpoint also sends media (images, documents, audio, video), location, and interactive messages (buttons and lists). See Rich WhatsApp Messages for those payloads.

Step 4 — Track Status

4Check delivery lifecycle

Every WhatsApp message moves through a lifecycle:

MESSAGE LIFECYCLE
accepted -> sent -> delivered -> read
                              \-> failed

You can poll for status, or receive it via webhooks.

List and filter messages

Fetch recent messages with GET /api/v1/whatsapp/messages (supports filtering):

cURL — LIST MESSAGES
curl "https://cliqtel.com/api/v1/whatsapp/messages?account_id=1" \
  -H "Authorization: Bearer YOUR_API_KEY"

Fetch a single message

Retrieve one message (and its current status) by ID with GET /api/v1/whatsapp/messages/{id}:

NODE.JS — GET ONE MESSAGE
const res = await fetch('https://cliqtel.com/api/v1/whatsapp/messages/90210', {
  headers: { 'Authorization': 'Bearer YOUR_API_KEY' },
});

const msg = await res.json();
console.log(msg.status); // "sent", "delivered", "read", or "failed"
PYTHON
import requests

res = requests.get(
    'https://cliqtel.com/api/v1/whatsapp/messages/90210',
    headers={'Authorization': 'Bearer YOUR_API_KEY'},
)

print(res.json()['status'])  # "sent", "delivered", "read", or "failed"

Delivery webhooks

Instead of polling, pass a status_callback_url on a send to receive delivery updates as they happen. Cliqtel will POST status changes (sent, delivered, read, failed) to your endpoint.

NODE.JS — SEND WITH STATUS CALLBACK
await fetch('https://cliqtel.com/api/v1/whatsapp/messages', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    account_id: 1,
    to: '+31611398058',
    type: 'text',
    text: { body: 'Your order has shipped.' },
    status_callback_url: 'https://your-app.com/webhooks/whatsapp',
  }),
});
You're live. With a scoped key, your account ID, and a send that returns { "status": "accepted" }, you're now sending WhatsApp messages through Cliqtel. Everything from here is refinement.

Next Steps

  • Rich WhatsApp Messages — media, location, and interactive button/list messages.
  • WhatsApp Campaigns — send approved templates to many recipients at once.
  • WhatsApp Setup Guide — connecting your WABA, registering numbers, and managing templates.
  • Full API Reference — every endpoint, parameter, and response shape.

Rate Limits & Errors

The WhatsApp API is rate limited to 60 requests per minute per API key. If you exceed it, requests are rejected until the window resets — batch or throttle high-volume sends accordingly.

StatusMeaning
401Missing or invalid API key
403Key lacks the required scope (whatsapp:write for sends)
422Invalid payload — e.g. free-form text outside the 24-hour window, or a missing template parameter
429Rate limit exceeded (60 requests/minute)
Failed vs. rejected: A 4xx means the API never accepted your request. A message that was accepted but later shows status failed means WhatsApp couldn't deliver it — check the message record for the failure reason.

FAQ

What's the difference between whatsapp:read and whatsapp:write?

whatsapp:read lets a key list messages, accounts, and templates — useful for read-only dashboards. whatsapp:write is required to send messages and manage templates. To follow this quickstart, grant both.

Why do I need a template to send my first message?

WhatsApp only permits free-form text inside a 24-hour customer service window — which opens when the customer messages you first. To start a conversation, you must use an approved template. Once the customer replies, the window opens and you can send free-form text for the next 24 hours.

Where do I get the account_id?

Call GET /api/v1/whatsapp/accounts (Step 2). Each connected WhatsApp Business Account has a numeric id — use that value as account_id on every send.

How do I know when a message is delivered?

Either poll GET /api/v1/whatsapp/messages/{id} and read the status field, or pass a status_callback_url on the send to have Cliqtel push status changes to your webhook as they happen.

Can I send images, buttons, or locations?

Yes — the same POST /api/v1/whatsapp/messages endpoint supports media, location, and interactive types. See Rich WhatsApp Messages for the payloads, and the full API reference for every field.

Ready to build?

Explore rich message types and bulk campaigns, or dive into the complete API reference.

API Reference →
© 2026 Cliqtel · cliqtel.com
About Blog Partners Coverage API Docs Status Privacy Terms Cookies Help Search
cliqtel.com is operated by Cliqtel B.V., registered in Zeist, the Netherlands · KVK 42033793 · VAT NL869402468B01 · SBI 62.09

We use essential cookies to make Cliqtel work. With your consent, we also use analytics cookies to improve our service. Cookie Policy