Flagship and flash in the same catalog
Start on Qwen3.6 Flash, promote to Qwen3.8 Max when the task needs it — no second vendor account.
Qwen3.8 Max down to Qwen3.6 Flash — same Base URL as DeepSeek and GLM, OpenAI Chat Completions throughout.
Why SupaNexus
Start on Qwen3.6 Flash, promote to Qwen3.8 Max when the task needs it — no second vendor account.
Thinking and tool-calling SKUs are first-class. Send the Public API ID; we route the rest.
Metering, quotas, and zero retention on every Qwen call.
Catalog
These are the SKUs we push for new production traffic. More Qwen IDs are listed in the console catalog.
| Model | Public API ID | Context | Best for |
|---|---|---|---|
| Qwen3.8 Max | qwen/qwen3.8-max | 1M | FlagshipAgentThinking |
| Qwen3.7 Max | qwen/qwen3.7-max | 1M | ReasoningToolsThinking |
| Qwen3.7 Plus | qwen/qwen3.7-plus | 1M | ChatAgentJSON |
| Qwen3.6 Flash | qwen/qwen3.6-flash | 1M | ChatValueThinking |
Live rates are in the developer console. See also homepage pricing · console catalog
Quickstart
Official OpenAI SDK. Set base URL, key, and qwen/qwen3.8-max.
https://api.supanexus.ai/v1
Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.supanexus.ai/v1",
api_key="sk-snx-...",
)
response = client.chat.completions.create(
model="qwen/qwen3.8-max",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)
FAQ
Which SKU to pick and how the gateway exposes Qwen.
qwen/qwen3.8-max is the current flagship for agents and hard tasks. qwen/qwen3.6-flash is the low-cost thinking SKU for high-volume chat.
Yes. Change base_url to https://api.supanexus.ai/v1 and api_key to a SupaNexus project key.
The console catalog is the source of truth. This page highlights the SKUs we recommend for new integrations.
One project key. Change only the model ID when you move from Flash to Max.