Back to Models

Nova 2.0 Pro Preview

Amazon
23/ 57

Intelligence Score

Intelligence

23

#85 of 210 (top 40%)

Speed

128 tok/s

#46 of 148

Price

$3.44

per M tokens

#125 cheapest of 144

Context Window

256K

tokens

Latency: 1ms (#21)

Score Breakdown

Quality Score40%
Speed Score20%
Cost Score66%

Use This Model

Claude Code

claude --model nova-2-0-pro

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