Cliqtel
  • 产品
    基础设施
    虚拟号码覆盖 70 多个国家的本地、移动和免费号码 SIP 中继适用于任何 PBX 的运营商级 SIP 旅行数据(eSIM)200+ 个国家的移动数据,无漫游费
    通信
    消息双向 SMS 与 WhatsApp 模板 云电话系统可视化呼叫流程、IVR、队列、CRM 弹屏 联络中心高级路由与 AI——抢先体验
    合作伙伴与 AI
    Cliqtel Connect面向 MSP 的白标平台 AI Access (MCP)面向智能体与副驾驶的可 AI 操作电信服务
  • 解决方案
    按团队
    远程团队为分布式团队提供一个企业号码 客服团队面向客服的队列、IVR 与共享收件箱 销售团队点击拨号、CRM 弹屏与本地来电显示
    探索
    覆盖范围覆盖 70+ 个国家的号码与费率 集成连接你的 PBX、CRM 与工具
  • 价格
    价格与套餐
    价格透明的按号码与用量计费 覆盖与费率各国的通话与号码费率 套餐包预付号码 + 分钟数套餐包
  • 文档
    快速上手
    快速上手设置你的账户与第一个号码 API 参考用于号码、通话与消息的 REST API 呼叫流程可视化构建 IVR 与路由 帮助中心常见问题、指南与故障排查
    指南
    PBX 与 SIP 设置连接 3CX、FreePBX、Asterisk 与 Teams 消息指南SMS 与 WhatsApp 集成指南 合规监管各国的号码注册规则
  • 关于
    公司
    关于 Cliqtel我们是谁,以及我们打造什么 联系我们联系我们的销售或客服团队 合作伙伴成为 Cliqtel 合作伙伴或经销商
    资源
    博客产品动态与电信指南 状态平台与网络实时运行状态 集成PBX、CRM 与工具的应用市场
English EN Nederlands NL Deutsch DE Français FR Español ES Português PT العربية AR 中文 ZH 日本語 JA हिन्दी HI
登录 订购号码
Cliqtel
产品 虚拟号码覆盖 70 多个国家的本地、移动和免费号码 SIP 中继适用于任何 PBX 的运营商级 SIP 旅行数据(eSIM)200+ 个国家的移动数据,无漫游费 消息双向 SMS 与 WhatsApp 模板 云电话系统可视化呼叫流程、IVR、队列、CRM 弹屏 联络中心高级路由与 AI——抢先体验 Cliqtel Connect面向 MSP 的白标平台 AI Access (MCP)面向智能体与副驾驶的可 AI 操作电信服务
解决方案 远程团队为分布式团队提供一个企业号码 客服团队面向客服的队列、IVR 与共享收件箱 销售团队点击拨号、CRM 弹屏与本地来电显示 覆盖范围覆盖 70+ 个国家的号码与费率 集成连接你的 PBX、CRM 与工具
价格 价格透明的按号码与用量计费 覆盖与费率各国的通话与号码费率 套餐包预付号码 + 分钟数套餐包
文档 快速上手设置你的账户与第一个号码 API 参考用于号码、通话与消息的 REST API 呼叫流程可视化构建 IVR 与路由 帮助中心常见问题、指南与故障排查 PBX 与 SIP 设置连接 3CX、FreePBX、Asterisk 与 Teams 消息指南SMS 与 WhatsApp 集成指南 合规监管各国的号码注册规则
关于 关于 Cliqtel我们是谁,以及我们打造什么 联系我们联系我们的销售或客服团队 合作伙伴成为 Cliqtel 合作伙伴或经销商 博客产品动态与电信指南 状态平台与网络实时运行状态 集成PBX、CRM 与工具的应用市场

语言
EN NL DE FR ES PT AR ZH JA HI
登录 免费开始
← 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
关于我们 博客 合作伙伴 覆盖范围 API 文档 运行状态 隐私 条款 Cookie 帮助 搜索
cliqtel.com 由 Cliqtel B.V. 运营,注册地为荷兰泽斯特 · KVK 42033793 · VAT NL869402468B01 · SBI 62.09

我们使用必要的 Cookie 以确保 Cliqtel 正常运行。在您同意的情况下,我们也会使用分析类 Cookie 以改进我们的服务。Cookie 政策