Most of our endpoints that return multiple objects are paginated. If you query them, the root level will contain the following elements:

{
"offset": 0,
"limit": 100,
"totalElements": 100000,
"data": []
}

offset

Returns the offset in the pagination. If no offset parameter was specified in the request, it will be 0

limit

Returns the limit. If no limit parameter was specified in the request, it will be the amount of objects to which the endpoint is limited

totalElements

The number of objects that can be fetched from the resource with the specified search parameters.

In order to get all elements from a resource you need to repeat the request with setting the offset Parameter to totalElements - (offset + limit)

until offset + limit >= totalElements