Cursor-based pagination
All list endpoints (/comments, /reviews, /dms, /mentions) return up to 100 results per page. To page through more, use the cursor returned in the previous response.
cursor field.
Polling for new items with since
To incrementally poll for new interactions, use the since parameter with an RFC3339 timestamp:
- Store the
created_atof the newest item from your last response - On the next poll, pass it as
since - Process and store the new items
- Repeat on a schedule (e.g. every 60 seconds)
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 50 | Results per page. Min 1, max 100. |
cursor | string | — | Opaque pagination cursor from previous response. |
since | string | — | RFC3339 timestamp. Return only items created after this time. |