Back to models
Alibaba

通义 Qwen3 Coder Next

Qwen3-Coder-Next 是面向本地开发与编码智能体的开源 MoE 模型,总参数 80B、每次激活 3B;针对多轮工具交互与仓库级代码理解优化,适合在消费级硬件上运行编码 Agent。

Quick Stats

Context

262K

Max Output

262K

Provider

Alibaba

Specs

1

Modalities

in textout text

Specs & List Price (per 1M tokens)

Quality
Input $0.149254Output $0.597015

Recommended Plan

通义 Qwen3 Coder Next Starter Plan

Pay-as-you-go after top-up; $1 free credit for new users.

Buy Plan

API Endpoint

Model IDqwen/qwen3-coder-next

cURL

curl https://intertoken.ai/v1/chat/completions \
  -H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen/qwen3-coder-next",
    "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-next",
    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.