List Reviews
List the organization’s reviews, newest first, cursor-paginated.
Returns at most limit reviews ordered by (created_at DESC, id DESC).
When more reviews remain, next_cursor is set; pass it back as the
cursor query param for the next page. The list is org-scoped (the
handler filters by the caller’s org AND the session is RLS-bound), so other
organizations’ reviews never appear. Sandbox reviews appear with
sandbox: true.
Query Parameters
Maximum reviews to return (1-100).
1 <= x <= 100Opaque pagination cursor from a previous response's 'next_cursor'. Omit for the first page.
Response
Successful Response
The GET /reviews response: a cursor-paginated page of reviews.
Reviews are returned newest first (stable order over
(created_at DESC, id DESC)). next_cursor is an opaque token: when
non-null, pass it back as the cursor query param to fetch the next
page; when null, this is the last page. Cursors are opaque by contract;
treat them as a black box and do not parse them.
