High-performance semantic search built on Cloudflare Workers. Zero cold starts, global edge deployment, sub-millisecond latency.
Built on Cloudflare Workers with Durable Objects. Your database is always warm and ready.
Deployed to 300+ data centers worldwide. Sub-millisecond latency from anywhere.
State-of-the-art approximate nearest neighbor search. Fast and accurate.
API key authentication, rate limiting, and input validation built-in.
Monitor your index health, query performance, and usage metrics.
From 0 to millions of vectors. Pay only for what you use.
# Go to Dashboard > API Keys
# Create a new keycurl -X POST https://api.quartzdb.io/api/vector/insert \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"id": "doc1", "vector": [0.1, 0.2, ...], "metadata": {"title": "Hello"}}'curl -X POST https://api.quartzdb.io/api/vector/search \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"vector": [0.1, 0.2, ...], "k": 10}'