Most endpoints that return lists of data allow to pass an offset
and limit
for pagination, where the offset
is a zero-based record index in the result set. Note that these endpoints will set the offset
to 0
and the limit
to 25
by default, unless specified otherwise.
When pagination is used, the following information is added as a meta
object in the response:
"meta": {
"offset": 0,
"limit": 25,
"totalCount": 500
}