Documentation Index
Fetch the complete documentation index at: https://docs.augustus.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
All list endpoints return paginated results using cursor-based pagination. Results are ordered bycreated_at descending (newest first).
Response envelope
List endpoints return a standard envelope:| Field | Type | Description |
|---|---|---|
data | array | Array of resource objects |
has_more | boolean | Whether more results exist beyond this page |
next_cursor | string | null | Opaque cursor to pass as the cursor query parameter for the next page. null when has_more is false. |
Query parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 10 | Number of results per page (1-100) |
cursor | string | none | Opaque cursor from a previous next_cursor |
Traversing pages
Fetch the first page, then passnext_cursor to get the next:
list method returns an async iterator that handles cursor traversal automatically - you don’t need to pass cursor yourself. Use the iterator when you want to walk every page; pass cursor explicitly only if you’re rendering one page at a time in your own UI.
Important notes
- Cursors are opaque. Do not decode, parse, or construct them. Always use the value returned by the API.
- Cursors are time-limited. An expired cursor is rejected. Start a new list request without
cursorif this happens. - Changing filters between pages invalidates the cursor. Omit
cursorto begin pagination again when filters change. - Pagination is forward-only. There is no
previous_cursor.