Fields
current
IntSpecifies the current page number. It helps in identifying the position within the paginated results.
next_id
StringSpecifies the identifier for the next page of results. It is used for fetching the subsequent set of items in a paginated response.
has_previous
BooleanThe boolean field indicates whether there is a previous page available. It is true if a previous page exists and false if the current page is the first one.
has_next
Boolean Indicates whether there is a next page available. It is true if a next page exists and false if the current page is the last one.
item_total
IntTotal number of items available across all pages. It provides a count of all the items that match the query criteria, regardless of pagination.
type
StringSpecifies type of pagination. If it is 'cursor' based or 'number' based.
size
IntRepresents the number of items on the current page. It indicates how many items are included in each page of the paginated response.
Was this section helpful?