Pagination
List endpoints use cursor-style pagination with before_id.
Parameters
- limit (default 50, max 200)
- before_id (return items with id less than this value)
Responses
Responses include next_before_id. To fetch the next page, pass it as the next request’s before_id.
Response
{
"ok": true,
"items": [ ... ],
"next_before_id": 123
}