Back to models
Alibaba

Qwen3 235B A22B

Qwen3-235B-A22B 是通义千问第三代旗舰 MoE 模型,总参数 2350 亿、激活 220 亿,逻辑推理、通用能力、知识增强与创作能力均有大幅提升,适用于高难度强推理与复杂 Agent 场景。

Quick Stats

Context

131K

Max Output

8K

Provider

Alibaba

Specs

1

Modalities

in textout text

Specs & List Price (per 1M tokens)

Quality
Input $2.00016Output $7.99992

Recommended Plan

Qwen3 235B A22B Starter Plan

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

Buy Plan

API Endpoint

Model IDqwen/qwen3-235b-a22b

cURL

curl https://intertoken.ai/v1/chat/completions \
  -H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen/qwen3-235b-a22b",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Python (openai SDK)

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-235b-a22b",
    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.