QANATIX
QANATIX Open

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 EngineQANATIX Open
PurposePrivate data layer for your AI appsPublic data hub for AI agents
AuthenticationAPI key requiredNone — open access
Data scopeYour tenant's data onlyAll public data across tenants
Rate limitingPer-tenant, plan-basedPer-IP address
BillingSubscription (Free / Pro / Scale)Free to query
API base/api/v1/*/open/v1/*
MCP endpoint/mcp//open/mcp/

How it works

  1. Data suppliers upload data via QANATIX Engine (the private API), then set visibility: "public" on records they want to share
  2. Public records are dual-written to a unified search index — all collections in one collection
  3. AI agents and developers search all public data in one call via the Open API or Open MCP server — no auth required
  4. 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 typeLimit
Search30 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.

On this page