Get a specific record in a vector collection
GET/v1/vectors/fetch
Fetches the content of a specific record in the vector collection by ID.
Request
Query Parameters
collectionName stringrequired
ids stringrequired
Responses
- 200
- 400
- 404
- 500
Record retrieved successfully
- application/json
- Schema
- Example (from schema)
Schema
vector object
id string
embedding number[]
metatag string
data string
{
"vector": {
"id": "vector-id-123",
"embedding": [
0.1,
0.2,
0.3
],
"metatag": "sampleTag",
"data": "This is some clear text data associated with the vector"
}
}
Bad request
Record or collection not found
Internal server error
Loading...