Points
Get single point
Retrieve full information for a single point by its ID, including its vector and payload.
get/collections/{collection_name}/points/{id}
Path parameters
collection_namestring required
The name of the collection containing the point.
The unique identifier of the point to retrieve. Accepts an integer or a UUID string.
Response
Point retrieved
Example response
{
"time": 0.000161149,
"status": "ok",
"result": {
"payload": {
"category": "electronics",
"price": 299.99
},
"vector": [
0.1,
0.2,
0.3,
0.4
]
}
}