Pagination
Cursor-free list pagination with limit, offset and has_more.
List endpoints take limit and offset query parameters and return a meta block alongside data.
bash
curl "https://app.softsolz.uk/api/v1/services/forms/forms?limit=20&offset=40" \ -H "Authorization: Bearer sk_live_your_key"json
{ "data": [ /* ...up to 20 items... */ ], "meta": { "limit": 20, "offset": 40, "total": 137, "has_more": true }}Keep increasing offset by limit until meta.has_more is false. The SDKs expose helpers that page automatically.