pagination
object with the following properties:
next
: The URL to the next page. This property will be omitted if the result set is empty or if the next page has no results.previous
: The URL to the previous page. This property will be omitted if the result set is empty or if there’s no previous page.first
: The URL to the first page. This property will be omitted if the result set is empty.pagination
object may look like in the response:
perPage
query parameter. For example, to request 100 results per page, you would add perPage=100
query parameter to the URL.
The perPage
parameter will automatically be included in the URLs in the pagination
object, so you don’t need to worry about it when following the pagination links.