SupaNexus
OpenAI-compatible · Qwen3.8 Max · Agent & thinking

Qwen APIone endpoint, every SKU

Qwen3.8 Max down to Qwen3.6 Flash — same Base URL as DeepSeek and GLM, OpenAI Chat Completions throughout.

Why SupaNexus

Qwen that fits an OpenAI-shaped production stack.

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.

Agent-ready IDs

Thinking and tool-calling SKUs are first-class. Send the Public API ID; we route the rest.

Governance included

Metering, quotas, and zero retention on every Qwen call.

Catalog

Qwen models on SupaNexus

These are the SKUs we push for new production traffic. More Qwen IDs are listed in the console catalog.

ModelPublic API IDContextBest for
Qwen3.8 Maxqwen/qwen3.8-max1M
FlagshipAgentThinking
Qwen3.7 Maxqwen/qwen3.7-max1M
ReasoningToolsThinking
Qwen3.7 Plusqwen/qwen3.7-plus1M
ChatAgentJSON
Qwen3.6 Flashqwen/qwen3.6-flash1M
ChatValueThinking

Live rates are in the developer console. See also homepage pricing · console catalog

Quickstart

First Qwen call in 30 seconds

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

Qwen API questions

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.

Other featured model APIs

Switch Qwen SKUs without rewriting clients.

One project key. Change only the model ID when you move from Flash to Max.