KuikCodeDocs
API

Pagination

List endpoints page with an opaque cursor. Follow next_cursor until it is null.

Endpoints that can return many items (/codes, /scans, /submissions, /codes/{id}/scans) return a page:

{
  "data": [ ... ],
  "next_cursor": "MTAw"
}

Pass next_cursor back as the cursor query parameter to fetch the next page. When next_cursor is null you have the last page.

curl "https://api.kuikcode.com/v1/codes?limit=100" -H "Authorization: Bearer kc_live_..."
curl "https://api.kuikcode.com/v1/codes?limit=100&cursor=MTAw" -H "Authorization: Bearer kc_live_..."
  • limit is 1 to 100, default 50.
  • Cursors are opaque. Do not build or parse them; they may change shape without notice.
  • Small collections (/folders, /templates, /webhooks, /pages) return everything in one response and have no cursor.