GET
/v1/clientsList all clients
Returns a paginated array of clients ordered by most recently active.
Query parameters
limit
integer
Max results per page (1–100). Default 20.
cursor
string
Pagination cursor from a previous response.
status
string
Filter: active, archived, lead.
Example response · 200 OK
{
"data": [
{
"id": "cli_8821",
"name": "Acme Studio",
"email": "ops@acme.studio",
"mrr": 2400,
"status": "active"
},
{
"id": "cli_8822",
"name": "Northwind Co.",
"email": "billing@northwind.io",
"mrr": 1290,
"status": "active"
}
],
"has_more": true,
"next_cursor": "cur_4f8b…"
}