Back to ModelsBack to Models
Nova 2.0 Omni (low)
Amazon23/ 57
Intelligence Score
Intelligence
23
#113 of 212 (top 53%)
Speed
N/A
Not measured
Price
$0.85
per M tokens
#76 cheapest of 142
Context Window
1M
tokens
Latency: N/A
Score Breakdown
Quality Score38%
Speed Score0%
Cost Score92%
Similar Models
K-EXAONE
LG AI Research
23intelligence
GPT-5.4 mini
OpenAI
23intelligence
Nova 2.0 Pro Preview
Amazon
23intelligence
Mi:dm K 2.5 Pro
Korea Telecom
23intelligence
Mistral Large 3
Mistral
23intelligence
Use This Model
Claude Code
claude --model nova-2-0-omni-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-omni-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-omni-reasoning-low"),
prompt: "Hello",
});