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" } } }
Documentation IndexFetch the complete documentation index at: https://opendata.dev/docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://opendata.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
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