Concept Flow - Page-based pagination
Client requests page 1
Server fetches items 1 to N
Server sends page 1 data + metadata
Client displays page 1
Client requests next page
Server fetches next N items
Repeat until no more pages
The client asks for a specific page number, the server returns that page's items and info, and the client can request more pages until done.