Pagination
List endpoints return a page of data and an opaque nextCursor:
json
{ "data": [ ... ], "nextCursor": "bzoyNQ==", "totalCount": 137 }Pass cursor to fetch the next page; omit it for the first page. limit defaults to 25 and is capped at 100.
bash
curl "https://api.stoneity.com/public/v1/tickets?boardId=$BOARD&limit=100"
curl "https://api.stoneity.com/public/v1/tickets?boardId=$BOARD&limit=100&cursor=bzoyNQ=="nextCursor is null on the last page. Cursors are only valid for the same query.