Rest API - Pagination Patterns
Given this pagination metadata in a REST API response:
{
"pagination": {
"current_page": 3,
"total_pages": 4,
"page_size": 10,
"total_items": 35
}
}How many items are on the last page?
Given this pagination metadata in a REST API response:
{
"pagination": {
"current_page": 3,
"total_pages": 4,
"page_size": 10,
"total_items": 35
}
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions