Arcmira list endpoints use cursor pagination. They never return total counts — fast, stable, infinite-scroll-friendly.Documentation Index
Fetch the complete documentation index at: https://docs.arcmira.com/llms.txt
Use this file to discover all available pages before exploring further.
Request shape
| Parameter | Description |
|---|---|
limit | 1–100. Default 20. |
cursor | Opaque cursor from a previous response’s next_cursor. Omit on the first request. |
Response shape
data— the page of results.has_more— whether more results exist after this page.next_cursor— opaque token to pass back ascursor. Treat it as a black box; the encoding is internal and may change.
has_more is false, you’ve reached the end and next_cursor is null.
Walking a list
Node 20+
Python 3.10+
Tips
- Don’t reconstruct cursors. They’re opaque. If you need to resume from a known anchor, store the most recent
next_cursoryou saw and pass it back unmodified. - Pick a reasonable
limit. 50–100 is typical. Larger pages save round trips; smaller pages return faster. - Cursors can expire. If the underlying ordering changes (rare), an old cursor may still work but include duplicates or gaps. Pull fresh from
nullif you need a strict snapshot. - Respect rate limits while iterating. Watch
RateLimit-Remainingheaders and back off when low. See Rate limits.