QANATIX Open
Free public data hub for AI agents. Up-to-date, source-verified business data — no API key, no signup.
QANATIX Open
QANATIX Open is a public data hub — up-to-date, source-verified business data that any AI agent can query. No authentication, no API key, no signup.
Two products, one platform
| QANATIX Engine | QANATIX Open | |
|---|---|---|
| Purpose | Private data layer for your AI apps | Public data hub for AI agents |
| Authentication | API key required | None — open access |
| Data scope | Your tenant's data only | All public data across tenants |
| Rate limiting | Per-tenant, plan-based | Per-IP address |
| Billing | Subscription (Free / Pro / Scale) | Free to query |
| API base | /api/v1/* | /open/v1/* |
| MCP endpoint | /mcp/ | /open/mcp/ |
How it works
- Data suppliers upload data via QANATIX Engine (the private API), then set
visibility: "public"on records they want to share - Public records are dual-written to a unified search index — all collections in one collection
- AI agents and developers search all public data in one call via the Open API or Open MCP server — no auth required
- Provider analytics track which suppliers' data gets queried, so they can measure impact
Pricing
Querying QANATIX Open is free. No signup, no API key, no credit card.
Rate limits apply per IP address to prevent abuse:
| Endpoint type | Limit |
|---|---|
| Search | 30 requests/minute |
| General (collections, lookup) | 60 requests/minute |
Publishing data requires a QANATIX Engine account (Free tier works). You upload data normally, then toggle visibility to public.
What data is available?
QANATIX Open contains up-to-date, source-verified business data published by companies across industries. Data comes directly from enterprise systems — not scraped, not cached, not stale. Every record traces back to its source.
To discover what's available:
# REST API
curl https://api.qanatix.com/open/v1/collections
# Or ask any MCP-connected AI agent
"What public data is available on QANATIX?"Agent Identification
When searching public data, we recommend identifying your agent:
curl -X POST https://api.qanatix.com/open/v1/search/products \
-H "X-Agent-Id: my-app-name" \
-d '{"query": "stainless bolt"}'import qanatix
qx = qanatix.QanatixOpen(agent_id="my-app-name")
results = qx.search("products", "stainless bolt")This helps data providers understand how their data is being used and improves the ecosystem for everyone. Agent identification is optional but recommended.
Quick links
- Open Quickstart — query public data in 2 minutes
- Open API Reference — all endpoints, request/response formats
- Open MCP Guide — connect Claude, Cursor, or any MCP client
- Publishing Data — make your data public on QANATIX Open