---
title: Pagination, filtering, and sorting
description: Page through permission-filtered list endpoints without assuming unsupported queries.
---

List endpoints use offset pagination. Pass `$top` for the page size and `$skip` for the offset. The default page size is 50 and the maximum is 200.

Responses contain `items`, `total`, `skip`, and `top`. Permission filtering happens before paging, so `total` is the number of rows visible to the token's user.

General filter and sort expressions are not part of the current public contract. Do not send them unless the live reference documents them for a specific operation.

[Open the published OpenAPI JSON](/openapi.json) for the current query parameters, or read the [developer API map](/developers/public-api).
