Documentation

Akumi is an EU-sovereign, OpenAI-compatible inference platform. Send chat and embedding requests to a single base URL, layer governed modules like the PII firewall, guard, RAG, and memory onto any request, and get every call metered and audited. These docs cover the API and each service.

Your first request

The API is OpenAI-compatible, so point any client at the base URL with your key. Create one under API keys, then send a chat completion.

curl https://api.akumi.cloud/v1/chat/completions \
  -H "Authorization: Bearer $AKUMI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "mistral/mistral-small-2603", "messages": [{"role": "user", "content": "Hello"}]}'

Prefer typed access? Reach for a client SDK for PHP, TypeScript, or Python.

Explore the platform

Inference

Governance

Knowledge

Operations

Not sure where to begin? Create an API key, send the request above, then add a governed module such as the PII firewall or RAG. For typed clients, see the SDKs; for every endpoint, the API reference.