Some endpoints are paginated, and, optionally take an opaque "cursor" to indicate the page of results to fetch. If no cursor is provided, the first page is returned. A response from a paginated endpoint will look this:
{
"success": true,
"results": [...],
"moreDataAvailable": true,
"nextCursor": "Rl",
}
When you've reached the last page, moreDataAvailable
will be false
.