Subscriber API
Subscriber List
List all subscribers on a WhatsApp bot via the ChatSyncs API, with limit/offset pagination and an option to sort by most recent message. Use when a developer asks how to export or sync their full subscriber list.
GET
Subscriber List
Lists subscribers on a WhatsApp bot.
Each time, add
Pagination and ordering
offset skips that many subscribers before it starts returning results. Say you have 20
subscribers and set limit=5:
| Call | offset | What you get back |
|---|---|---|
| 1st call | 0 | Subscribers 1–5 |
| 2nd call | 5 | Subscribers 6–10 — the first 5 are skipped, not included again |
| 3rd call | 10 | Subscribers 11–15 |
| 4th call | 15 | Subscribers 16–20 |
limit to the previous offset to get the next page.
orderBy controls which subscriber comes first:
| orderBy | Result |
|---|---|
0 (default, or omit it) | Subscribers come back in the order they were added — oldest first |
1 | Whoever messaged most recently comes first, regardless of when they were added |
Query Parameters
Your ChatSyncs API key (not a WhatsApp/Meta access token). Where to find it.
Example:
"API-KEY"
The WhatsApp account's phone number ID. Where to find it.
Example:
"PHONE-NUMBER-ID"
How many subscribers to fetch.
Example:
10
Pagination offset.
Example:
1
Set to 1 to sort by most recent message first. Set to 0 (default) for default order.
Example:
0
Previous
Create SubscriberCreate a WhatsApp subscriber/contact via the ChatSyncs API without waiting for them to message your bot first — request parameters, GET and POST examples, and the response shapes for success, duplicate, and account-not-found cases. Use when a developer asks how to add a contact programmatically or bulk-import subscribers from their own system.
Next
Subscriber List

