Skip to main content
Pagination is a technique to retrieve large datasets in smaller chunks by dividing them into pages.
It uses offset and limit parameters to specify the starting point and maximum number of records per page. Adjusting the offset and limit values allows navigation through the dataset and retrieval of desired subsets.
ParameterDescription
offsetSpecifies the starting point of the dataset. It determines the index of the first record to be retrieved.
limitSpecifies the maximum number of records to be retrieved per page. It restricts the number of records returned in a single page of the dataset.