Api reference
List conversation threads
List conversation threads for the authenticated merchant
Related endpoints
POST /comms/send— Send a messageGET /comms/threads/{threadId}/messages— List messages in a thread
Pagination
Offset-based with limit (default 25, max 100) and offset. The response pagination block includes total and hasMore. See the pagination guide for SDK auto-paging helpers.
x-api-key<token>
Your RevKeen API key (powered by Unkey). Get it from Dashboard > Settings > API Keys. Use rk_sandbox_* for test mode and rk_live_* for production.
In: header
Query Parameters
customerId?string
Filter by customer UUID
Format
uuidstatus?string
Filter by thread status
Value in
"open" | "closed" | "pending"channel?string
Filter by channel
invoiceId?string
Filter by related invoice UUID
Format
uuidlimit?number
Maximum number of results (1-100)
Default
50Range
1 <= value <= 100offset?|
Number of results to skip
Default
0Range
0 <= valueResponse Body
application/json
curl "https://api.revkeen.com/v2/comms/threads" \ -H "x-api-key: $REVKEEN_API_KEY"{
"threads": [
{}
],
"total": 0,
"limit": 0,
"offset": 0
}