Pagination
Some endpoints use pagination. Those endpoints will respond to an initial request with the first page of results, and provide a nextCursor
in the response.
To get the next page, you need to provide the nextCursor
to the request, in the cursor query param.
To receive all results, this process can be repeated until no nextCursor
is included in the response.
Last updated