Pagination

Pagination information for the APIs

Fireapis handles pagination for all the APIs which has list type responses. Pagination query params to be passed in URL:

  • page - Data for that particular page, by default will be on page 1

  • page_size - This will give you the size of the page response should contain, by default it will be 25

  • order_by - Can order your data based on the field both ascending and descending order can be done by giving your field name for eg: order_by = id will make ascending order and order_by=-id will make descending order of your data based on id.

Last updated