To paginate through the response of a list request, you can pass the page query parameter. For more precision, you can also add the itemsPerPage parameter. List responses contain the paginator object, with details

{
    "paginator": {
        "totalItemsCount": 86,
    "currentPage": 2,
    "itemsPerPage": 10
  },
    "data": [
    {...},
    {...}
  ]
}