Add XinoAPI as a custom OpenAI-compatible provider in CC Switch, then route coding agents to DeepSeek V4, Qwen, GLM, Kimi, or MiniMax models.
Use https://api.xinoapi.com/v1 with existing OpenAI SDKs and agent tools.
Route across DeepSeek, Qwen, GLM, Kimi, and MiniMax through one account.
Plaintext prompts and completions are not retained by default; upstream provider terms still apply.
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.
Use https://api.xinoapi.com/v1 as the OpenAI-compatible base URL.
Start with deepseek-v4-flash for fast loops or deepseek-v4-pro for planning and code review.
No. Use CC Switch custom OpenAI-compatible provider settings.
Review pricing, choose a model, and test with a small request before moving production traffic.