For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
CloudGitHub
  • API Reference
      • POSTRetrieve points
      • PUTUpsert points
      • GETRetrieve a point
      • POSTDelete points
      • PUTUpdate vectors
      • POSTDelete vectors
      • POSTSet payload
      • PUTOverwrite payload
      • POSTDelete payload
      • POSTClear payload
      • POSTBatch update points
      • POSTScroll points
      • POSTCount points
      • POSTPayload field facets
LogoLogo
CloudGitHub
API ReferencePoints

Retrieve a point

GET
/collections/:collection_name/points/:id
GET
/collections/:collection_name/points/:id
$curl http://localhost:6333/collections/collection_name/points/42 \
> -H "api-key: <apiKey>"
200Retrieved
1{
2 "usage": {
3 "cpu": 1,
4 "payload_io_read": 1,
5 "payload_io_write": 1,
6 "payload_index_io_read": 1,
7 "payload_index_io_write": 1,
8 "vector_io_read": 1,
9 "vector_io_write": 1
10 },
11 "time": 0.002,
12 "status": "ok",
13 "result": {
14 "id": 42,
15 "payload": {},
16 "vector": {},
17 "shard_key": "region_1",
18 "order_value": 42
19 }
20}
Retrieves all details from a single point.
Was this page helpful?
Previous

Delete points

Next
Built with

Authentication

api-keystring
API Key authentication via header

Path parameters

collection_namestringRequired
Name of the collection to retrieve from
iduint64 or stringRequired
Id of the point

Query parameters

consistencyinteger or enumOptional
Define read consistency guarantees for the operation

Response

successful operation
usageobject or any
timedouble
Time spent to process this request
statusstring
resultobject
Point data