Welcome to Kontinent

An EU-hosted, OpenAI-compatible LLM gateway.

Kontinent is a single OpenAI-compatible endpoint in front of EU-resident model providers (Mistral, Scaleway, OVHcloud, IONOS, Azure EU Data Zone), with prepaid credits, per-key rate limits, and zero prompt retention by design — an EU-sovereign alternative to OpenRouter.

Why Kontinent

EU data residency

Requests are served by EU-resident providers. Each model carries a sovereignty tier so you can require an EU-owned provider.

Zero retention

Prompt and completion bodies are never persisted or logged — only token counts, latency, status, model, and cost.

Drop-in compatible

OpenAI-compatible on purpose. Any OpenAI SDK works by pointing baseURL at Kontinent.

Get started

1

Point your OpenAI client at Kontinent

Use any OpenAI SDK — just set baseURL and your Kontinent API key.

1import OpenAI from "openai";
2
3const client = new OpenAI({
4 baseURL: "https://api.kontinent.ai/v1",
5 apiKey: process.env.KONTINENT_API_KEY, // sk-kt-…
6});
2

Pick a model

Model ids are in provider/model form, e.g. mistral/mistral-large-latest. Discover what your organization can use — with EUR pricing and sovereignty tier — via GET /v1/models.

3

Go deeper