// Qwen API

Qwen API access through one OpenAI-compatible gateway.

XinoAPI exposes Qwen models with explicit model IDs such as qwen-turbo, qwen-plus, and qwen-max for global developers building apps and agent workflows.

Which Qwen API model should you use?

Qwen Turbo

Use qwen-turbo for high-volume, cost-sensitive workloads. It has a 1M context window and is the lowest-cost Qwen route in the current catalog.

Qwen Plus

Use qwen-plus as the balanced default for product features, structured outputs, and agent workflows. It supports 1M context.

Qwen Max

Use qwen-max for the most demanding Qwen tasks when flagship quality is the priority. It supports 256K context.

Keep the OpenAI SDK, change the base URL to https://api.xinoapi.com/v1, and select the Qwen model by its explicit ID. Review the current Qwen API prices before scaling traffic.

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="qwen-plus",
    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

Which Qwen model IDs are available?

Use qwen-turbo for high-volume tasks, qwen-plus for balanced quality, and qwen-max for flagship use cases.

Should I use qwen3.6-plus?

Use the explicit backend model IDs published by XinoAPI, such as qwen-plus and qwen-max.

Does Qwen work with OpenAI SDKs?

Yes. Use the standard chat completions endpoint at https://api.xinoapi.com/v1.

Next steps

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

Chat with us