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
Getting Started
Create your API key, send your first request, and connect the MCP server in under five minutes.
SecurityAuthentication
API key management, OAuth 2.0 discovery, agent authentication, and security best practices for production deployments.
ProtocolMCP Server
Model Context Protocol server documentation — available tools, resources, transport configuration, and integration patterns.
LibrariesSDK Reference
Install and use the @simosphere/sdk for TypeScript and Python. Type-safe clients with built-in retry logic and streaming support.
ToolingCLI Tool
The @simosphere/cli command-line interface for managing API keys, testing models, and automating workflows from your terminal.
EventsWebhooks
Receive real-time notifications for usage events, billing updates, and model completions via HTTP webhook endpoints.
RecipesCode Examples
Production-ready examples in curl, Node.js, and Python — chat completions, streaming, function calling, and batch processing.
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