> ## Documentation Index
> Fetch the complete documentation index at: https://developer.tra.cy/llms.txt
> Use this file to discover all available pages before exploring further.

# Pagination

All GET endpoints that return resource collections support pagination via URL parameters.

<ParamField query="offset" default="null" type="integer">
  Number of resources to skip.
</ParamField>

<ParamField query="limit" default="null" type="integer">
  Number of resources to return.
</ParamField>

<RequestExample>
  ```bash Example theme={null}
  # Skips the first 10 and returns the next 25 records.
  curl --request GET \
    --url '/records?offset=10&limit=25'
  ```
</RequestExample>
