Scroll
Scroll points
Paginate through all points in a collection. The response includes a next_page_offset cursor that you pass as offset in subsequent requests to retrieve the next page. Useful for exporting data, iterating large datasets, or processing points in batches.
post/collections/{collection_name}/points/scroll
Path parameters
collection_namestring required
The name of the collection to scroll through.
Request body
Example request
{
"limit": 10,
"with_payload": true
}Response
Scroll results
Example response
{
"time": 0.000129652,
"status": "ok",
"result": {
"points": [
{
"id": 1,
"payload": {
"category": "A",
"value": 10
}
}
]
}
}