// CC Switch

Use XinoAPI with CC Switch.

Add XinoAPI as a custom OpenAI-compatible provider in CC Switch, then route coding agents to DeepSeek V4, Qwen, GLM, Kimi, or MiniMax models.

Why developers use XinoAPI

OpenAI-compatible

Use https://api.xinoapi.com/v1 with existing OpenAI SDKs and agent tools.

Chinese model coverage

Route across DeepSeek, Qwen, GLM, Kimi, and MiniMax through one account.

Privacy-conscious routing

Plaintext prompts and completions are not retained by default; upstream provider terms still apply.

Quick start

from openai import OpenAI

client = OpenAI(
    api_key="xino-your-key-here",
    base_url="https://api.xinoapi.com/v1",
)

response = client.chat.completions.create(
    model="deepseek-v4-flash",
    messages=[{"role": "user", "content": "Hello from XinoAPI"}],
)

print(response.choices[0].message.content)

Use explicit model IDs. Avoid legacy aliases in new integrations.

Common questions

What base URL should I use in CC Switch?

Use https://api.xinoapi.com/v1 as the OpenAI-compatible base URL.

Which model should I start with?

Start with deepseek-v4-flash for fast loops or deepseek-v4-pro for planning and code review.

Does this require a special plugin?

No. Use CC Switch custom OpenAI-compatible provider settings.

Next steps

Review pricing, choose a model, and test with a small request before moving production traffic.

Chat with us