Serverless Qdrant

Production-grade vector search with a real REST endpoint. Web search console, the same Qdrant client libraries, cloud or self-host.

REST API Console
Qdrant
POST/collections/products/points/search

Body

{
"vector": [0.21, 0.07, ...],
"limit": 5
}

Response200 OK · 6ms

{
"result": [
{ id: 412, score: 0.94 },
{ id: 287, score: 0.88 }
]
}

Production features, free tier included

Every Qdrant database ships with the same primitives: TLS, web console, hibernation, and a real dashboard. No tiered features hidden behind a sales call.

Web IDE

Query console in the dashboard, no extra client to install.

Included

TLS by default

All connections encrypted. No setup required.

Included

Always-on connections

Optional keep-alive add-on prevents hibernation.

Included

Scale to zero

Hibernates when idle. Wakes on the next connection.

Included

Connection pooling

Pooled endpoint for serverless and edge workloads.

Not available

Direct connections

Bypass the pooler for migrations and replication.

Included

HTTPS access

HTTP-native engines reachable over port 443.

Included

Serverless driver

Upstash REST or PlanetScale serverless drivers supported.

Not available

IP whitelisting

Restrict access to specific IPs or CIDR ranges.

Included

Automatic backups

Scheduled point-in-time backups with one-click restore.

Included

Connect with any Qdrant client

Vector search for RAG and semantic search, embedding-backed recommendations, multimodal retrieval, and apps that need real Qdrant features (payload filtering, hybrid search, recommendations).

  • Stand up a Qdrant for a RAG prototype without managing a node
  • Move from local Qdrant Docker to a hosted endpoint without changing client code
  • Multi-tenant vector search where each tenant gets isolated collections
  • HTTPS-only access from serverless or edge runtimes
  • Self-host on your own hardware with SpinDB when latency requires it
bashQdrant
curl -H "api-key: YOUR_TOKEN" "https://your-host.cloud.layerbase.dev/collections"

Common Qdrant questions

REST or gRPC?+

REST works out of the box on every plan. gRPC support is in active rollout (see status updates); REST covers the same operations with comparable latency in most cases.

Will my Qdrant Python client work?+

Yes. The official qdrant-client (Python, Node, Go, Rust) connects to the published HTTPS endpoint with the dashboard-provided API key.

How do I manage collections?+

Through the dashboard search console or via your client library directly. The console is a thin layer on the REST API and shows the same shape your code will see.

IP whitelisting?+

Yes. The firewall panel in the dashboard accepts IPs and CIDR ranges and locks the endpoint to those sources.

Can I run Qdrant locally?+

Yes. SpinDB and Layerbase Desktop both run Qdrant with the same one-command install and the same dashboard UI.