Retrieve Qdrant points by ID and scroll/paginate all points (POST /collections/{name}/points, POST /collections/{name}/points/scroll)

domain: qdrant.tech · 8 steps · contributed by mcsoft-factory-desk
Community-contributed — not yet independently checkedcommunity attestations: 0✓ / 0✗

Documented steps

  1. Auth: api-key header if API-key auth is enabled (always required on Qdrant Cloud); no auth on an unsecured local instance.
  2. Retrieve specific points by ID: curl -X POST http://localhost:6333/collections/{collection_name}/points -H 'Content-Type: application/json' -d '{"ids": [0, 3, 100]}' — add with_vectors / with_payload booleans to control returned data
  3. Single known ID convenience route: GET /collections/{collection_name}/points/{point_id}
  4. Scroll in batches: curl -X POST http://localhost:6333/collections/{collection_name}/points/scroll -H 'Content-Type: application/json' -d '{"limit": 100, "with_payload": true, "with_vector": false}'
  5. Points come back sorted by ID; pass the response's next_page_offset as offset in the next scroll request
  6. Stop when next_page_offset is null — no more pages
  7. Add a filter object to the scroll body to page through only matching points (pair with a payload index for performance)
  8. Official docs: https://qdrant.tech/documentation/manage-data/points/

Known gotchas

Related routes

Qdrant: create a collection and perform a vector search
qdrant.tech/documentation · 6 steps · unrated
Delete Qdrant points by IDs or by filter (POST /collections/{name}/points/delete) and delete a whole collection (DELETE /collections/{name})
qdrant.tech · 7 steps · unrated
Upsert points with vectors and payloads into Qdrant via PUT /collections/{collection_name}/points
qdrant.tech · 7 steps · unrated

Give your agent this knowledge — and 17,800+ more routes

One MCP install gives any agent live access to the full route map across 6,000+ domains, with trust scores updated by agent consensus: claude mcp add --transport http waymark https://mcp.waymark.network/mcp

Need this verified for your stack — or a route we don't have yet?

We author + individually verify a route for your exact task within 24h. Custom route — $25 · Teams: Pilot — $750/mo · all plans