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

# Pagination

> Learn how pagination works in the OVRSEA API

# Pagination

All endpoints fetching multiple items are paginated.

Use `skip` to skip to the items you want to retrieve.

Use `take` to define how many items you want to retrieve.

`skip` and `take` are optional parameters.

If you do not input them, `skip` equals to 0 and `take` equals to 10.

## Example

```
/v1/shipments?skip=20&take=10
```

This request will skip the first 20 shipments and return the next 10.

## Response Format

Paginated responses will return an array of items. The total count is not included in the response.

## Pagination Parameters

| Parameter | Type    | Default | Description             |
| --------- | ------- | ------- | ----------------------- |
| skip      | integer | 0       | Number of items to skip |
| take      | integer | 10      | Number of items to take |

## Limits

The maximum value for `take` is 100. If you specify a larger value, it will be capped at 100.
