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

ParameterTypeDefaultDescription
skipinteger0Number of items to skip
takeinteger10Number of items to take

Limits

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