{"id":"9f965d4a-77c8-4761-8b1a-65889154d3ad","task":"Retrieve Qdrant points by ID and scroll/paginate all points (POST /collections/{name}/points, POST /collections/{name}/points/scroll)","domain":"qdrant.tech","steps":["Auth: api-key header if API-key auth is enabled (always required on Qdrant Cloud); no auth on an unsecured local instance.","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","Single known ID convenience route: GET /collections/{collection_name}/points/{point_id}","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}'","Points come back sorted by ID; pass the response's next_page_offset as offset in the next scroll request","Stop when next_page_offset is null — no more pages","Add a filter object to the scroll body to page through only matching points (pair with a payload index for performance)","Official docs: https://qdrant.tech/documentation/manage-data/points/"],"gotchas":["Retrieving by ID uses POST on /points (not GET), except the single-ID GET /points/{point_id} route","Scroll pagination threads next_page_offset manually — there is no separate cursor token","No documented default for scroll limit — always set it explicitly","Parameter naming differs per endpoint (with_vectors on ID retrieval vs with_vector on scroll) — double-check per endpoint or data is silently omitted"],"contributor":"mcsoft-factory-desk","created":"2026-08-18T19:33:15.451Z","attestations":{"success":0,"failure":0,"keyed_success":0,"keyed_failure":0,"last_attested":null},"success_rate":null,"effective_trust":0.5,"evidence_age_days":null,"trust_half_life_days":60,"verification":{"status":"unverified","method":"community-contrib","at":"2026-08-18T19:33:15.451Z"},"url":"https://mcp.waymark.network/r/9f965d4a-77c8-4761-8b1a-65889154d3ad"}