For developers

Your data, one endpoint, agent-ready.

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.

Quickstart

A single call, fully sourced.

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.

example.ts
// 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();
Built in

Designed for people and agents.

Scoped keys

Every key is read-controlled and limited to the tools and data you allow. Rotate or revoke in one click.

Full audit log

Every query is logged with who, what and when, so an agent touching your data is never a black box.

Grounded answers

Responses come with citations to your source content, so nothing is invented and everything is checkable.

MCP server

Connect an agent in minutes.

Point any MCP-capable client at your Ozon endpoint and it can call these tools under narrow, logged permissions.

ToolWhat it does
knowledge.searchGrounded semantic search across your connected content, with citations.
document.extractStructured fields and tables from a document, with confidence scores.
analytics.queryNatural-language questions answered against your data warehouse.
record.getFetch a single record by id under read-only, scoped access.
job.runTrigger a predefined, allow-listed pipeline; write access is never implicit.

All tools default to read-only. Write-capable tools are explicitly allow-listed per key and always logged.

Get building

Want an API key for your project?

Tell us what you are connecting and we will set up a scoped key and walk you through the first call.