Back to modelsBuy Plan
Alibaba
通义 Qwen3 Coder Plus
Qwen3 Coder Plus 是阿里云百炼提供的 Qwen3-Coder 商用增强版,基于 480B MoE 代码大模型,专精自主编程与工具调用,支持百万级上下文与仓库级代码理解,适合企业级编码智能体与生产工作流。
Quick Stats
Context
1000K
Max Output
66K
Provider
Alibaba
Specs
1
Modalities
in textout text
Specs & List Price (per 1M tokens)
Quality
Input $0.597015Output $2.38806
Recommended Plan
通义 Qwen3 Coder Plus Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
qwen/qwen3-coder-pluscURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen/qwen3-coder-plus",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python
from openai import OpenAI
client = OpenAI(
base_url="https://intertoken.ai/v1",
api_key="$TOKENPORTAL_API_KEY",
)
resp = client.chat.completions.create(
model="qwen/qwen3-coder-plus",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Start using this model
Sign up free, get an API key, and make your first call in 30 seconds.