Skip to content
View as Markdown

Pagination

Field Type Description
offset optional uint32 Used to paginate through results. To get the next page result, set this to the desired starting offset. For example, setting to 10 will start with the 10th record. The default value is 0.
limit optional uint32 This defines the upper bound of the number of items returned. The maximum value supported is 100, meaning that we’ll never return more than min(items.count, limit, 100).

Example

JSON
{
  "limit": 25,
  "offset": 0
}