Order notifications
Trigger a message from your e-commerce backend when an order ships — via the channel the customer actually uses, thanks to the cascade.
Send from your CRM, receive incoming messages on your server — one plain REST API across WhatsApp, Telegram and MAX.
The Telegram Bot API is great — if you are running a bot account. The WhatsApp Business API is great — if you have a verified business profile and budget for per-conversation fees. chat-valet's API covers the gap: your personal number, automatable via HTTP, billed by the month.
X-Api-Key: cv_xxxxxxxxxxxxxxxxxxxxxxxx
`accountId` comes from `GET /api/accounts`. To reply into an existing conversation pass `chatId` instead of the account-number pair — the address is taken from the conversation itself, which is more reliable.
POST https://chat-valet.com/api/messages/send
X-Api-Key: cv_xxxxxxxxxxxxxxxxxxxxxxxx
Content-Type: application/json
{
"accountId": "9f8b1c2d-...",
"to": "15551234567",
"text": "Hi, your order is ready."
}
The method this API exists for: you give a number and a text, the service checks where the number is registered and sends through the first suitable channel. The order comes from the `order` field, or the default you set in the cabinet, or WhatsApp → Telegram → MAX. The response tells you which channel was used and why others were skipped.
POST https://chat-valet.com/api/messages/send-cascade
{ "to": "15551234567", "text": "Your order is ready." }
→ {
"ok": true,
"channel": "whatsapp",
"attempts": [
{ "channel": "telegram", "skipped": "not_registered" },
{ "channel": "whatsapp", "sent": true }
]
}
Register your https endpoint in the cabinet under “API”. Two events: `message.in` for incoming messages, `message.status` for send results. Every request is signed with HMAC SHA-256 in the X-Chatvalet-Signature header.
{
"event": "message.in",
"at": "2026-08-21T10:23:00Z",
"data": {
"accountId": "9f8b1c2d-...",
"chatId": "c3d4e5f6-...",
"text": "When does my parcel arrive?",
"senderId": "15551234567"
}
}
Trigger a message from your e-commerce backend when an order ships — via the channel the customer actually uses, thanks to the cascade.
Send reminders 24 hours before a booking with the sendAt field. If the contact replies, receive the event in your CRM via webhook.
A form submission fires your server, which calls chat-valet's API to send a follow-up within seconds.
Post server or business alerts to a Telegram account. Simpler than setting up a dedicated Telegram bot.
The daily sending quota of your plan is shared between the API, broadcasts and the cabinet — the API reports the remaining quota in every send response. Up to 10 active API keys and 5 webhook endpoints per account.
When you use the API to message EU residents, you are the data controller under GDPR. Ensure you have a lawful basis for processing (typically consent or contract).
API access is included in all paid plans. During the 30-day trial you can use the API free of charge. No per-request fees.
Sign up and create an API key in the “API” section of the cabinet.
Get your API keyThe WhatsApp Business API requires Meta business verification and charges per conversation. chat-valet's API works through your personal WhatsApp account — no verification, no per-message billing, just a flat monthly plan.
API keys tied to your account, created in the cabinet under “API”. Pass the key in the X-Api-Key header or as an Authorization: Bearer token — both work. Keys carry scopes: send and read.
You register an HTTPS endpoint in the cabinet. On every incoming message or send status we POST a JSON payload signed with HMAC SHA-256 (the X-Chatvalet-Signature header). On failure we retry after 5 and 30 seconds; anything missed can be re-read from the log.
During the 30-day trial you can use your live account for testing at no cost. Webhook endpoints have a one-click “test ping” in the cabinet.
Yes. Connect several WhatsApp, Telegram and MAX accounts under one subscription and pick the sending account per request — or let the cascade method pick the channel for you.