Skip to main content

Pagination

Example - Fetching 20 results from total results starting from 10.

Request

Method: POST

Endpoint: /v1.4/search

curl --location 'https://SEARCH_DOMAIN_URL/v1.4/search' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer cGFTZXXXXXXXXXXXXXXXA==' \
--data '{
***,
"start": 10,
"size": 20,
***
}

Fields

Field NameUsage
startSet the index of the result to start from.
sizeSet the number of results per page. Defaults to 20.