cursor
which can be used to get the previous or next page of results. This is usually better than using since_id
to paginate because:
null
cursor indicate that no more results are availablecursor
param to retrieve the next page with the same filters appliedcursor
property in the response object, for example:
null
it means there are no more pages available in that direction.
Link
header of the response. This is useful
if you are retrieving results in CSV format, in which case the response body
will not include the cursorscursor
query param. You do not need to pass any other params; if you initially provided other params to filter the response, these will be part of the cursor already, and any other filtering params will be ignored. Only the limit
parameter will be recognized.
For example:
since_id
parameter paginationsince_id
parameter.
When a since_id
is specified, the collection is ordered by id
ascending, and contains only resources with an id greater than the specified since_id
.
To fully paginate through a collection, follow the algorithm:
since_id
to 0
limit
since_id
and limit
limit
, finishsince_id
equal to the id
of the last resource in the response and repeat