Zum Inhalt springen
Developer Docs

Documentation

Everything you need to integrate with the SIMOSphere AI platform. From your first API call to production-grade agent orchestration — all data stays within the EU, all models run on sovereign infrastructure.

Quick Start

The SIMOSphere AI API is fully OpenAI-compatible. If you already use the OpenAI SDK, you only need to change two lines: the base URL and your API key. All endpoints follow the same request and response format, so existing integrations work out of the box.

curl https://api.simosphereai.com/v1/chat/completions \
  -H "Authorization: Bearer sk_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"mistral-small-latest","messages":[{"role":"user","content":"Hello"}]}'

Documentation Sections

Platform Overview

API Gateway

The gateway at api.simosphereai.com handles authentication, rate limiting, billing, and load balancing across all model backends. It exposes an OpenAI-compatible REST API that works with any existing SDK or HTTP client.

Data Sovereignty

All inference runs on GPU infrastructure located in Germany. No request data leaves the EU. Prompts and completions are never stored or used for training. The platform is designed for GDPR-compliant AI operations with full audit trails.

Model Selection

Access Mistral, Qwen, LLaMA, and other open-weight models through a unified API. Switch models by changing one parameter — no code changes needed. Each model runs in its own isolated environment with dedicated GPU resources.

Enterprise Features

Multi-tenant API key management, per-key rate limits, usage analytics, webhook notifications, and RBAC access control. The platform supports team collaboration with granular permission scopes and complete audit logging.

Base URL

All API requests use the following base URL. This is the only endpoint you need — it serves chat completions, model listings, embeddings, and all other operations.

https://api.simosphereai.com/v1
Developer Documentation — SIMOSphere AI