api/pagination

pagination Shipped

What this lens looks for

Cursor pagination preferred for most APIs — stable under concurrent mutations, consistent performance at any depth; offset pagination only when users need page numbers or data is static; response includes next_cursor + has_more (cursor) or offset/limit/total (offset)

What its verifier checks

All collection endpoints return paginated responses (not unbounded lists); cursor-based pagination used unless offset explicitly justified; pagination envelope present with has_more or total