Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 50 | Number of items to return (max 100) |
cursor | string | — | Opaque cursor from a previous response |
Response format
| Field | Description |
|---|---|
data | Array of results |
next_cursor | Pass this as cursor to get the next page. null if no more results. |
has_more | true if more results exist beyond this page |
Example
First page:has_more is false.
Notes
- Cursors are opaque strings. Don’t parse or construct them — always use the value from
next_cursor. - Results are ordered by
created_at DESC(newest first) unless otherwise documented. - The maximum
limitis 100. Values above 100 are clamped.
