Skip to main content

Pagination

Pagination refers to the page-by-page division of large data sets into smaller, manageable sections. Instead of delivering all records at once, they are split into numbered pages.

In the memida REST API, pagination is controlled via query parameters:

  • page – Page number (starting from 1)
  • limit – Number of records per page (max. 100)

The API returns a paginator object in every response that contains the total number of records and the number of available pages. This way, all data can be retrieved completely page by page.