Back to models
Alibaba

Qwen3 32B

Qwen3-32B 是通义千问第三代 328 亿参数稠密因果语言模型,可在思考模式与对话模式间无缝切换;思考模式适合复杂推理与数学,对话模式适合高效多轮交互,支持工具调用与长上下文。

Quick Stats

Context

131K

Max Output

16K

Provider

Alibaba

Specs

1

Modalities

in textout text

Specs & List Price (per 1M tokens)

Quality
Input $2.00016Output $19.99944

Recommended Plan

Qwen3 32B Starter Plan

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

Buy Plan

API Endpoint

Model IDqwen/qwen3-32b

cURL

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