📂Pagination

The previous version 'Page number Pagination" still working but will take end in Q3 2025.

Response pagination field

Example response

Please find below an example from GET : Jobs opened by media with the query parameter

{
    "total":121,
    "totalPage":2,
    "next-page":"CIMjGgIQABoJKaZ3asmVAQAAIho6GDY3ZTFhNDc4ZTc0ODNjMWI0ZDUyOWE0Yg=="
    "jobs":[...]
}

Fields

  • total: The total number of items in this request,

  • totalPage: Total number of pages

  • next-page: The cursor id for next page. If it's null next page doesn't exist

Request pagination field

Field
type
example

limit

number

The number of resources per page. Default: 100, max: 500

next-page

string

The cursor Id for the page.

Example:

?limit=100&next-page=CIMjGgIQABoJKaZ3asmVAQAAIho6GDY3ZTFhNDc4ZTc0ODNjMWI0ZDUyOWE0Yg==

Last updated