Architecture & Vision
Routor is an intelligent routing layer that sits between your app and every AI provider. This page covers what it does today and where it is going.What Routor Is Today
Routor is a proxy that makes one decision per request: which model should handle this. It does this in a few milliseconds, without any extra API call, and without your app knowing or caring. Every request goes in. The right model gets it. Your app gets back a standard OpenAI-compatible response.What It Handles Automatically
Routing - Routor classifies each prompt by task category and difficulty, then picks the best-value model that can handle it - balancing quality and cost. Simple requests go to fast, cheap models. Complex tasks go to stronger ones. Failover - If the selected provider fails, Routor silently retries the next model in the chain. Your app never sees the error. Capability matching - If your request includes images, files, or tool calls, only models that support those capabilities are considered. Provider health - Routor validates all connected providers on startup and monitors them continuously. Broken or rate-limited providers are removed from routing automatically.The 13 Providers
All routing happens behind a single endpoint:api.routor.ai/v1. You never call providers directly.
| Provider | What it brings |
|---|---|
| OpenAI | GPT-5.4, GPT-5.5 - strong general and coding |
| Anthropic | Claude Opus 4.8, Sonnet 4.6, Haiku 4.5 - best for long context and writing |
| Gemini 3.5 Flash, 3.1 Pro - fast and cheap at scale | |
| DeepSeek | V4 Flash, V4 Pro - best reasoning-per-dollar |
| xAI | Grok 4 - strong general model |
| NVIDIA | Nemotron 3 Ultra - fast open-weight inference |
| Moonshot | Kimi K2.6 - long context specialist |
| MiniMax | MiniMax M3 - bilingual, strong value |
| Z.AI | GLM-5.2 - open-weight, frontier-competitive |
| Alibaba | Qwen3.7-Max - strong multilingual |
| Mistral | Mistral Large 3, Small 4 - strong European-hosted option |
| Microsoft | Phi-4, Mai-Code-1-Flash - compliance-friendly routing |
| Xiaomi | MiMo-V2.5-Pro - efficient bilingual reasoning |