List endpoints return at most 10 records per page by default (maximum 100). Pagination is cursor-based — there are no page numbers, and the cursor is opaque.Documentation Index
Fetch the complete documentation index at: https://docs.kwugwo.africa/llms.txt
Use this file to discover all available pages before exploring further.
Query parameters
| Name | Type | Default | Max | Notes |
|---|---|---|---|---|
cursor | string | none | — | Pass back what you got in next_cursor from the previous response. |
limit | integer | 10 | 100 | Must be >= 1. Values above 100 return 422. |
Response shape
data— the page of records.next_cursor— pass back to fetch the next page.nullon the last page; that’s how you know you’re done.
Walking a list
What you cannot do
- Jump to a specific page.
- Walk a list backwards.
- Use a cursor with a different
limitthan the page it came from (this works in practice, but is not contract — don’t rely on it).

