Back to Models

Nova 2.0 Omni

Amazon
17/ 57

Intelligence Score

Intelligence

17

#126 of 210 (top 60%)

Speed

169 tok/s

#23 of 148

Price

$0.85

per M tokens

#88 cheapest of 144

Context Window

1M

tokens

Latency: 1ms (#46)

Score Breakdown

Quality Score30%
Speed Score27%
Cost Score92%

Use This Model

Claude Code

claude --model nova-2-0-omni

API (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",
    "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"),
  prompt: "Hello",
});
Back to Models