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

# Pagination

> Understand how to paginate responses.

For endpoints that list all items in a resource collection, you can optionally paginate the response using two request parameters

<Tabs>
  <Tab title="size">
    * The maximum number of items to return

    * Accepts integers from 0 to 500

    * Defaults to 100
  </Tab>

  <Tab title="index">
    * The starting point within the list of items

    * Accepts integers 0 and greater

    * Defaults to 0
  </Tab>
</Tabs>

API responses are returned in reverse chronological order, meaning the newest items will appear at the top of the response. If no pagination parameters are supplied, Deliver will default to returning the most recently created 100 items.

## Examples

The below request has a `size` of 10 and an `index` of 0, meaning the API would return transfers 1-10.

```json theme={null}
https://api-sandbox.orum.io/deliver/transfers?size=10&index=0
```

To return the next 10 transfers, make a request with a `size` of 10 and an `index` of 1. This would return transfers 11-20.

```json theme={null}
https://api-sandbox.orum.io/deliver/transfers?size=10&index=1
```
