Points

Retrieve a point

GET
Retrieves all details from a single point.

Path parameters

collection_namestringRequired
Name of the collection to retrieve from
idunionRequired
Id of the point

Query parameters

consistencyunionOptional
Define read consistency guarantees for the operation

Response

This endpoint returns an object
time
doubleOptional
Time spent to process this request
status
stringOptional
result
objectOptional
Point data
GET
1curl http://localhost:6333/collections/collection_name/points/1 \
2 -H "api-key: <apiKey>"
200Retrieved
1{
2 "time": 1.1,
3 "status": "status",
4 "result": {
5 "id": 1,
6 "payload": {
7 "payload": {
8 "key": "value"
9 }
10 },
11 "vector": [
12 1.1
13 ],
14 "shard_key": "shard_key",
15 "order_value": 1
16 }
17}