Most of the lists/item collections are paginated. The parameters that control the pagination are start
and limit
, indicating the desired offset and the items per page values.
Within the response's additional_data
object, a pagination
object will be set upon pagination. The additional_data.pagination
will contain the given start
and limit
, as well as the more_items_in_collection
flag, indicating whether there are more items that can be fetched after the current batch. When there are, next_start
will also be set which can be used for the next offset pointer.
The maximum limit
value is 500.
Updated 8 months ago