Back to ModelsBack to Models
Qwen3 Omni 30B A3B
Alibaba16/ 57
Intelligence Score
Intelligence
16
#148 of 212 (top 70%)
Speed
95 tok/s
#75 of 141
Price
$0.43
per M tokens
#52 cheapest of 142
Context Window
65.5K
tokens
Latency: 2ms (#78)
Score Breakdown
Quality Score27%
Speed Score12%
Cost Score96%
Similar Models
Qwen3.5 2B
Alibaba
16intelligence
Nanbeige4.1-3B
Nanbeige
16intelligence
Ministral 3 14B
Mistral
16intelligence
DeepSeek R1 Distill Llama 70B
DeepSeek
16intelligence
Falcon-H1R-7B
TII UAE
16intelligence
Use This Model
Claude Code
claude --model qwen3-omni-30b-a3b-reasoningAPI (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "qwen3-omni-30b-a3b-reasoning",
"messages": [{"role": "user", "content": "Hello"}]
}'Vercel AI SDK
import { generateText } from "ai";
import { openrouter } from "@openrouter/ai-sdk-provider";
const { text } = await generateText({
model: openrouter("qwen3-omni-30b-a3b-reasoning"),
prompt: "Hello",
});