Back to ModelsBack to Models
NVIDIA Nemotron 3 Nano
NVIDIA24/ 57
Intelligence Score
Intelligence
24
#108 of 212 (top 51%)
Speed
181 tok/s
#21 of 141
Price
$0.10
per M tokens
#14 cheapest of 142
Context Window
1M
tokens
Latency: 1ms (#56)
Score Breakdown
Quality Score40%
Speed Score23%
Cost Score99%
Similar Models
gpt-oss-120B (low)
OpenAI
24intelligence
gpt-oss-20B (high)
OpenAI
24intelligence
GPT-5.4 nano
OpenAI
24intelligence
LongCat Flash Lite
LongCat
24intelligence
Grok 4.1 Fast
xAI
24intelligence
Use This Model
Claude Code
claude --model nvidia-nemotron-3-nano-30b-a3b-reasoningAPI (cURL)
curl https://openrouter.ai/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENROUTER_API_KEY" \
-d '{
"model": "nvidia-nemotron-3-nano-30b-a3b-reasoning",
"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("nvidia-nemotron-3-nano-30b-a3b-reasoning"),
prompt: "Hello",
});