Everything we build exposes a clean API and an MCP server, so your applications and AI agents can reach it securely, without ever holding your raw credentials.
Authenticate with a scoped API key, ask a question, and get an answer with citations back to the source. No SDK required, though we ship one.
// Query your knowledge base over HTTPS const res = await fetch("https://api.ozondataservices.com/v1/query", { method: "POST", headers: { Authorization: `Bearer ${OZON_KEY}` }, body: JSON.stringify({ tool: "knowledge.search", input: q, grounded: true }) }); const { answer, citations } = await res.json();
Every key is read-controlled and limited to the tools and data you allow. Rotate or revoke in one click.
Every query is logged with who, what and when, so an agent touching your data is never a black box.
Responses come with citations to your source content, so nothing is invented and everything is checkable.
Point any MCP-capable client at your Ozon endpoint and it can call these tools under narrow, logged permissions.
All tools default to read-only. Write-capable tools are explicitly allow-listed per key and always logged.
Tell us what you are connecting and we will set up a scoped key and walk you through the first call.