Qdrant · Schema
SearchRequest
Search request. Holds all conditions and parameters for the search of most similar points by vector similarity given the filtering restrictions.
Artificial IntelligenceVector Databases
Properties
| Name | Type | Description |
|---|---|---|
| shard_key | object | Specify in which shards to look for the points, if not specified - look in all shards |
| vector | object | |
| filter | object | Look only for points which satisfies this conditions |
| params | object | Additional search params |
| limit | integer | Max number of result to return |
| offset | integer | Offset of the first result to return. May be used to paginate results. Note: large offset values may cause performance issues. |
| with_payload | object | Select which payload to return with the response. Default is false. |
| with_vector | object | Options for specifying which vectors to include into response. Default is false. |
| score_threshold | number | Define a minimal score threshold for the result. If defined, less similar results will not be returned. Score of the returned result might be higher or smaller than the threshold depending on the Dist |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SearchRequest",
"title": "SearchRequest",
"description": "Search request. Holds all conditions and parameters for the search of most similar points by vector similarity given the filtering restrictions.",
"type": "object",
"required": [
"limit",
"vector"
],
"properties": {
"shard_key": {
"description": "Specify in which shards to look for the points, if not specified - look in all shards",
"anyOf": [
{
"$ref": "#/components/schemas/ShardKeySelector"
},
{
"nullable": true
}
]
},
"vector": {
"$ref": "#/components/schemas/NamedVectorStruct"
},
"filter": {
"description": "Look only for points which satisfies this conditions",
"anyOf": [
{
"$ref": "#/components/schemas/Filter"
},
{
"nullable": true
}
]
},
"params": {
"description": "Additional search params",
"anyOf": [
{
"$ref": "#/components/schemas/SearchParams"
},
{
"nullable": true
}
]
},
"limit": {
"description": "Max number of result to return",
"type": "integer",
"format": "uint",
"minimum": 1
},
"offset": {
"description": "Offset of the first result to return. May be used to paginate results. Note: large offset values may cause performance issues.",
"type": "integer",
"format": "uint",
"minimum": 0,
"nullable": true
},
"with_payload": {
"description": "Select which payload to return with the response. Default is false.",
"anyOf": [
{
"$ref": "#/components/schemas/WithPayloadInterface"
},
{
"nullable": true
}
]
},
"with_vector": {
"description": "Options for specifying which vectors to include into response. Default is false.",
"default": null,
"anyOf": [
{
"$ref": "#/components/schemas/WithVector"
},
{
"nullable": true
}
]
},
"score_threshold": {
"description": "Define a minimal score threshold for the result. If defined, less similar results will not be returned. Score of the returned result might be higher or smaller than the threshold depending on the Distance function used. E.g. for cosine similarity only higher scores will be returned.",
"type": "number",
"format": "float",
"nullable": true
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/qdrant-searchrequest"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.