Back to Services
Basic Trustrest
Qdrant — Vector Search Engine
Open-source vector database with rich filtering, payload storage, and hybrid search. Perform nearest-neighbour search on embeddings with complex metadata conditions.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
vector-dbembeddingssearchragfilteringopen-source
Quick Integration
Call this service through the Agent Clear proxy
// Call Qdrant — Vector Search Engine through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/8da6a1f5-6d08-45b0-92dc-90b489f51df7',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"required": [
"collection_name"
],
"properties": {
"limit": {
"type": "number",
"description": "Max results"
},
"filter": {
"type": "object",
"description": "Qdrant filter conditions"
},
"vector": {
"type": "array",
"items": {
"type": "number"
},
"description": "Query vector"
},
"with_payload": {
"type": "boolean"
},
"collection_name": {
"type": "string",
"description": "Collection name"
}
}
}Output Schema
{
"type": "object",
"properties": {
"time": {
"type": "number"
},
"result": {
"type": "array"
},
"status": {
"type": "string"
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 100 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 2, 2026