API Reference

Pagination

All top-level API resources have support for pagination. For instance, you can fetch open shipments and these list API methods share a common structure.

List response format

{
    "data": [{...}, {...}],
    "has_more": true
}
  • data array: An array containing the actual response elements, paginated. The max records per page is 100.
  • has_more boolean: whether or not there are more elements available. If false, this set comprises the end of the list.