Search Paging

The Search API supports paging. This means is that the page number and page size can be set in a search request.
The result of a search also contains the current page number and page size.

Request example:

{
   "page": 1,
   "pageSize": 20
}

Results Limitation

The Search API limits search results to 10.000 items. As such, it is recommended to use additional filters when high result count is expected, that might reach this limit. The example below uses collectionId property as a filter, but other properties like ProductName can be used as a range to reduce the number of results returned.

Request example:

{
   "page": 1,
   "pageSize": 20,
   "Filter": "collectionId.eq.10075"
}