Rest API - Pagination Patterns
Given this API response for cursor-based pagination:
{
"data": ["item4", "item5"],
"next_cursor": "xyz789"
}What should the client do to get the next page of data?
Given this API response for cursor-based pagination:
{
"data": ["item4", "item5"],
"next_cursor": "xyz789"
}What should the client do to get the next page of data?
next_cursor value "xyz789" which marks the next data position.?cursor=xyz789 to get the next page.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions