// Chinese LLM API

One API for leading Chinese LLMs.

Build with DeepSeek, Qwen, GLM, Kimi, and MiniMax through a single OpenAI-compatible endpoint with unified billing and developer-friendly routing.

How a Chinese LLM API gateway works

Keep one integration

Point the OpenAI SDK or compatible client at https://api.xinoapi.com/v1. Existing chat-completions code stays in place while the selected model changes.

Choose a model by task

Start with DeepSeek for fast coding and reasoning loops, Qwen for balanced general-purpose work, then evaluate GLM, Kimi, or MiniMax against the task you actually ship.

Operate from one account

Use one API key, one balance, and published model IDs instead of maintaining separate provider dashboards and SDK conventions.

XinoAPI is for developers and businesses outside mainland China. Plaintext prompts and responses 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 is a Chinese LLM API gateway?

It is a unified API layer that routes requests to Chinese model providers while presenting an OpenAI-compatible interface.

Who is XinoAPI for?

XinoAPI is intended for developers and businesses outside mainland China.

Which model families are covered?

XinoAPI focuses on DeepSeek, Qwen, GLM, Kimi, and MiniMax model families.

Next steps

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

Chat with us