Retrieve a single vector and its attributes by its user-provided ID.
cURL
curl --request GET \ --url http://localhost:8080/api/v1/vector/vectors/{id}
{ "status": "success", "vector": { "id": "doc-1", "attributes": { "vector": [ 1, 2, 3 ], "category": "electronics" } } }
The user-provided vector ID.
64
The requested vector.
Response containing a single vector retrieved by ID.
"success"
A record with an ID and attributes, including the embedding vector.
Show child attributes