> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mixroute.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> A professional and stable AI API platform, supporting 200+ popular AI models

## Welcome to MixRoute

MixRoute is a professional and stable AI API platform, **based on the unified OpenAI API standard**, supporting 200+ popular AI models. With one API Key , you can easily access all mainstream AI models including OpenAI, Claude, Gemini, DeepSeek, Qwen, Kimi, GLM and more.

### Base URL

```text theme={null}
 https://api.mixroute.ai/v1
```

<Info>
  When calling API , please ensure the AI model name matches the naming convention in the [MixRoute Model Marketplace](https://console.mixroute.ai/models); otherwise, the request will fail to execute.
</Info>

## Quick Start

<CardGroup cols={2}>
  <Card title="Quick Start" icon="rocket" href="https://mixroute.ai" cta="Learn more">
    Get started in three simple steps , and access all trending AI models instantly
  </Card>

  <Card title="API Reference" icon="sparkles" href="https://console.mixroute.ai/models" cta="Learn more">
    Complete API documentation and developer guide
  </Card>
</CardGroup>

## Why MixRoute?

### ✨ One Interface, Multiple Models

No need to apply for separate accounts and manage API keys for each AI service:

* **One Account**: Manage all AI services
* **One API Standard**: Compatible with OpenAI API format
* **One API Key**: Access all models

### 🔧 Easy to Use

Switching models is as simple as changing one parameter:

```python theme={null}
from openai import OpenAI

client = OpenAI(
    api_key="sk-xxxxxxxxxx",
    base_url="https://api.mixroute.ai/v1"
)

# Use GPT 5.5
response = client.chat.completions.create(
    model="gpt-5.5",
    messages=[{"role": "user", "content": "Hello!"}]
)

# Switch to Claude - just change the model name
response = client.chat.completions.create(
    model="claude-opus-4-8",
    messages=[{"role": "user", "content": "Hello!"}]
)
```

### 🛡️ Stable & Reliable

* **Real-time Monitoring**: 24/7 service status monitoring
* **Smart Routing:** Automatic load balancing with failover capabilities.
* **High Availability**: Supports multi-node deployment to achieve ultra-low latency.

### 💰 Cost-Efficiency

* **Transparent Pricing**: Token-based billing across all models for full transparency.
* **Usage Analytics:** Real-time visual reports of your consumption.
* **Flexible Payments**: Supports Stripe and various other payment methods.

## Core APIs

<CardGroup cols={2}>
  <Card title="Chat Completions API" icon="comments" href="https://mixroute.ai" cta="Learn more">
    Create multi-turn conversations and text generation
  </Card>

  <Card title="Image Generation API" icon="image" href="https://mixroute.ai" cta="Learn more">
    Support text-to-image, image-to-image generation
  </Card>

  <Card title="Realtime Voice API" icon="microphone" href="https://mixroute.ai" cta="Learn more">
    Low-latency text/voice real-time conversation
  </Card>

  <Card title="Model List API" icon="list" href="https://console.mixroute.ai/models" cta="Learn more">
    Get all available model information
  </Card>
</CardGroup>

## Use Cases

<CardGroup cols={2}>
  <Card title="Conversational AI" icon="message">
    Cherry Studio, Chatbox and other AI chat clients
  </Card>

  <Card title="Programming" icon="code">
    Cursor, Claude Code, Cline and other AI coding tools
  </Card>

  <Card title="Dev Frameworks" icon="cubes">
    LangChain, Dify and other AI app development frameworks
  </Card>

  <Card title="Translation" icon="language">
    Immersive Translate, Bob Translate and other tools
  </Card>
</CardGroup>

## 🔗 Quick Links

<CardGroup cols={2}>
  <Card title="Register Now" icon="user-plus" href="https://mixroute.ai" cta="Learn more">
    Create an account and access all trending AI models instantly
  </Card>

  <Card title="MixRoute Console" icon="gauge" href="https://mixroute.ai" cta="Learn more">
    Manage API Keys, view usage statistics and billing
  </Card>
</CardGroup>
