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

Pagination

Page through list endpoints returned by the Blooio API.

List endpoints return a page of results plus pagination metadata:

{
  "chats": [ /* ... */ ],
  "pagination": { "limit": 50, "offset": 0, "total": 327 }
}

Use limit (1–200, default 50) to control page size and offset to skip results. To fetch the next page, add limit to the current offset:

curl "https://api.blooio.com/v2/api/chats?limit=50&offset=50" \
  -H "Authorization: Bearer bl_live_..."
Try it

You have reached the end of the list once offset + limit is greater than or equal to total.