Back to Models

Nova 2.0 Omni

![Amazon](https://artificialanalysis.ai/img/logos/aws_small.svg)Amazon
17/ 57

Intelligence Score

Intelligence

17

#141 of 212 (top 67%)

Speed

190 tok/s

#18 of 141

Price

$0.85

per M tokens

#78 cheapest of 142

Context Window

1M

tokens

Latency: 1ms (#55)

Score Breakdown

Quality Score28%
Speed Score24%
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