Skip to main content

Pagination

List and browse endpoints return pages of results. Use cursor or offset parameters documented on each route in OpenAPI JSON.

SDK pattern

Most list helpers accept limit and a continuation token returned on the response:
let cursor: string | undefined
do {
  const page = await auvy.neurons.list({ brain_id: brainId, limit: 50, cursor })
  for (const item of page.items) {
    console.log(item.id)
  }
  cursor = page.next_cursor
} while (cursor)
Exact field names vary by namespace — see SDK source of truth.

HTTP

Pass query parameters as documented per resource. Prefer limit ≤ 100 unless the endpoint specifies otherwise.

Jobs and streams

Job lists paginate; job streams are not paginated — they are long-lived SSE/JSONL channels. See Jobs and streaming.