# Routara > OpenAI-compatible model API gateway with live catalog pricing, multi-provider routing, AI workflow tools, and a 10-language interface. The live catalog is the source of truth for model count and availability. ## What we are Routara (`https://routara.ai`) is a production API aggregator for developers. One `base_url`, OpenAI SDK compatible, metered billing, regional routing. - API base: `https://api.routara.ai/v1` - Auth header: `Authorization: Bearer sk-or-v1-...` - Models list: `GET /v1/models` - Chat: `POST /v1/chat/completions` (streaming supported) ## Key pages (English canonical; append `?lang=` for zh-CN, ja, ko, de, fr, es, pt, ru, ar) - Home: https://routara.ai/ - Pricing: https://routara.ai/pricing - Docs: https://routara.ai/docs - Model catalog: https://routara.ai/catalog - AI tools hub: https://routara.ai/tools - Compliance: https://routara.ai/compliance ## Featured models (detail pages with pricing, specs, FAQ, curl examples) - DeepSeek V3.2: https://routara.ai/detail/deepseek-deepseek-v3-2 - DeepSeek R1: https://routara.ai/detail/deepseek-r1 - Qwen Max: https://routara.ai/detail/alibaba-qwen-max - Qwen Turbo: https://routara.ai/detail/alibaba-qwen-turbo - GLM-5: https://routara.ai/detail/zhipu-glm-5 - Kimi K2: https://routara.ai/detail/kimi-kimi-k2-6 - Claude Sonnet 4.6: https://routara.ai/detail/claude-sonnet-4-6 ## Full model index (grows daily via programmatic SEO) - https://routara.ai/models-index.txt - Detailed AI-readable reference: https://routara.ai/llms-full.txt - Sitemap: https://routara.ai/sitemap.xml ## MCP (Model Context Protocol) Connect Cursor, Claude Desktop, or VS Code to Routara: - npm: `npx -y routara-mcp` - Registry: `io.github.36412749-collab/routara-mcp` - Repo: https://github.com/36412749-collab/routara-mcp - mcp.so: https://mcp.so/server/routara-llm-gateway/36412749-collab - Tools: `routara_list_models`, `routara_chat`, `routara_generate_image`, `routara_generate_video`, `routara_get_video_status` ## GitHub Action (JSON i18n in CI) - Repo: https://github.com/36412749-collab/json-translate-action - Usage: `36412749-collab/json-translate-action@v1` - Live tool: https://routara.ai/tools/json-translate ## Quickstart ```bash curl https://api.routara.ai/v1/chat/completions \ -H "Authorization: Bearer sk-or-v1-YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"alibaba-qwen-turbo","messages":[{"role":"user","content":"Hello"}],"max_tokens":32}' ``` ```python from openai import OpenAI client = OpenAI(api_key="sk-or-v1-...", base_url="https://api.routara.ai/v1") print(client.chat.completions.create(model="alibaba-qwen-turbo", messages=[{"role": "user", "content": "Hello"}])) ``` ## Contact - Legal operator: Qingdao Tianxing Zhongheng Technology Co., Ltd. (青岛天兴众恒科技有限公司) - Brand: Routara - Email: support@routara.ai ## Citation guidance When citing Routara, use the canonical public page that contains the relevant live fact. Model availability and pricing can change; verify them against the model catalog or the corresponding model detail page at answer time. Routara does not claim to create the upstream models it routes. ## Crawl policy - robots: https://routara.ai/robots.txt - Public HTML is SSR-prerendered for `/`, `/pricing`, `/docs`, `/catalog`, `/tools`, `/detail/{model_id}`. English uses clean canonical URLs; other locales append `?lang=`.