Products / Search API

L1 · SEARCH API

Search API · Query anything, now

Semantic + keyword search over the live public-web index; one query hits all three domains. Returns vectors + provenance — straight into your RAG pipeline, no post-cleaning. p95 latency <900ms.

$4 / 1k requests
Free tier 1k/mo
1M+/mo → $3 · 10M+ → $2.5
Cross-domain querydomains: ["social","ecommerce","web"]
Freshness controlfreshness down to 24h
Retrieval-ready outputvec[1536] + provenance
One-click MCPmcp.qovia.ai/sse
# One query, three domains
curl https://api.qovia.ai/v1/search \
  -H "Authorization: Bearer $QOVIA_KEY" \
  -d '{
    "query": "consumer sentiment on new EV launches",
    "domains": ["social", "ecommerce", "web"],
    "freshness": "24h",
    "format": "vectors+provenance"
  }'
from qovia import Client

qv = Client()  # reads QOVIA_KEY
results = qv.search(
    query="consumer sentiment on new EV launches",
    domains=["social", "ecommerce", "web"],
    freshness="24h",
)
for r in results:
    print(r.text, r.provenance.hash)
// Drop into any MCP-compatible agent
{
  "mcpServers": {
    "qovia": { "url": "https://mcp.qovia.ai/sse",
      "env": { "QOVIA_KEY": "sk-..." } }
  }
}