Skip to main content

Cursor-based pagination

All list endpoints return paginated results. The response includes a next_cursor field; pass it as the cursor query parameter on the next call to fetch the next page.
When there are no more results, the response omits next_cursor (or returns it as an empty string). This pattern applies to all list endpoints: /v1/inbox/comments, /v1/inbox/conversations, /v1/inbox/reviews, /v1/posts, /v1/media, and others.

Filtering

Most list endpoints support filtering parameters. For example:
See the API Reference for the full set of query parameters on each endpoint.

Parameters