Reference

Pagination

Technical reference on using pagination tokens with the Cloud API.

Some of our GET endpoints return paginated results. If additional records exist, a next_page_token will be returned in the response. This token can be used to retrieve additional records by setting its value to the query parameter pagetoken.

If the next_page_token key is not returned on a endpoint that supports pagination, there are no additional records.

Below is a simplified structure that mirrors the list runs endpoint.

{
  "runs": [...],
  "next_page_token": "sampletoken"
}
Copy

The next set of records can be obtained by adding pagetoken=sampletoken as a query parameter on the URL used in the original request.

Page last updated