Developer Documentation
QANATIX
Data middleware for AI. Connect your enterprise data, query it from any AI model with zero hallucination.
Ingest
# Upload a CSV of products
curl -X POST https://api.qanatix.com/api/v1/ingest/manufacturing/product/upload \
-H "Authorization: Bearer sk_live_..." \
-F "file=@products.csv"
# 2,847 entities ingested | instant | Queryable immediately
Search
# Full-text search with structured filters
curl -X POST https://api.qanatix.com/api/v1/search/manufacturing \
-H "Authorization: Bearer sk_live_..." \
-d '{"query": "stainless M8 bolt ISO 4017", "limit": 5}'
# 5 results | Score: 0.87 | 42ms | Full-text + filters
MCP (Claude, Cursor, any agent)
# Claude calls your data directly via MCP
User:
"Find me all M8 bolts in stainless steel with DIN certification"
Claude → qanatix_search()
query: "stainless M8 bolt DIN"
vertical: "manufacturing"
# 3 results returned to Claude | Verified data, zero hallucination