Pagination

Most top-level API resources have support for bulk fetches via the List API methods. For instance, you can list languages, contributors, or translations.

These List API methods share a common structure and supports two GET parameters:

  • limit (integer) — default value is 100, and the maximum value is 5000 (please note that certain endpoints might have smaller limits).
  • page (integer) — default value is 1.

Each paginated response contains the following headers:

  • X-Pagination-Total-Count — total number of available entries.
  • X-Pagination-Page-Count — total number of available pages.
  • X-Pagination-Limit — entries displayed per page. This value equals to the limit value GET param sent in the request.
  • X-Pagination-Page — current page number. This value equals to the page value GET param sent in the request.