Collections
All operations related to collections
Get all collections
Get all collections and their configurations
Get a collection
Get a specific collection and it's configuration using it's id or name.
Create a collection
Delete a collection
Delete an existing collection using it's name or id.
Update a collection
Update details of an existing collection.
Query a collection for a vector value
Search a collection using a query vector. It retrieves the vectors that are most similar to the queried vector, along with their similarity scores.
Query a collection for a text
Search a collection using a text. It retrieves the vectors that are most similar to the queried text, along with their similarity scores.
Path parameters
collectionIdstring · min: 1Required
Body
contentstring[]Required
topKnumberOptional
Responses
200
Returns a list of the matching Vectors in a Collection.
application/json
400
Returns a bad request error.
application/json
post
/collections/{collectionId}/query/textLast updated