Back to modelsBuy Plan
Alibaba
Qwen3 30B A3B
Qwen3-30B-A3B 是通义千问第三代 MoE 模型,总参数 300 亿、激活 30 亿,在逻辑推理、通用能力、知识增强与创作能力上全面提升,适合高性价比生产部署。
Quick Stats
Context
131K
Max Output
16K
Provider
Alibaba
Specs
1
Modalities
in textout text
Specs & List Price (per 1M tokens)
Quality
Input $0.75024Output $7.488
Recommended Plan
Qwen3 30B A3B Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
qwen/qwen3-30b-a3bcURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen/qwen3-30b-a3b",
"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-30b-a3b",
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.