BetaThe V4 API is in beta — endpoints and functionality may change.

Pagination

Page through list endpoints using opaque cursors.

List endpoints return a page of results plus pagination metadata:

{
  "data": [ /* ... */ ],
  "has_more": true,
  "next_cursor": "eyJjcmVhdGVkQXQiOjE3..."
}

Pass next_cursor back as the cursor query parameter to fetch the next page, and use limit (1–200, default 50) to control page size:

curl "https://api.blooio.com/v4/chats?limit=100&cursor=eyJj..." \
  -H "Authorization: Bearer bl_live_..."

When has_more is false, next_cursor is null and you have reached the end of the list. Cursors are opaque — do not parse or construct them.