Search vectors
Find the most similar vectors in a collection using approximate nearest neighbor search. Supports score thresholds, payload filtering, and tunable HNSW parameters.
Authorizations
Admin JWT or access token for authenticating requests to VectorAI DB.
Path Parameters
The name of the collection to search.
Body
The query vector to search for. The number of dimensions must match the collection's configured vector size.
Maximum number of results to return. Defaults to 10.
5
Number of results to skip for pagination. Use with limit to page through results.
0
Minimum similarity score for results. Only points with scores at or above this threshold are returned.
0.7
Optional filter to narrow search results based on payload metadata. See the Filters API for syntax.
Whether to include payload metadata in the response.
true
Whether to include vector data in the response. Set to false to reduce response size.
false
Advanced search parameters for tuning search quality and performance.