Back to ModelsBack to Models
Nova 2.0 Pro Preview (low)
Amazon32/ 57
Intelligence Score
Intelligence
32
#78 of 212 (top 37%)
Speed
149 tok/s
#46 of 141
Price
$3.44
per M tokens
#121 cheapest of 142
Context Window
256K
tokens
Latency: 7ms (#123)
Score Breakdown
Quality Score53%
Speed Score19%
Cost Score69%
Similar Models
Qwen3.5 9B
Alibaba
32intelligence
Gemma 4 31B
Google
32intelligence
K-EXAONE
LG AI Research
32intelligence
Grok 3 mini Reasoning (high)
xAI
32intelligence
Trinity Large Thinking
Arcee AI
32intelligence
Use This Model
Claude Code
claude --model nova-2-0-pro-reasoning-lowAPI (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "nova-2-0-pro-reasoning-low",
"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("nova-2-0-pro-reasoning-low"),
prompt: "Hello",
});