Back to Models

Amazon Nova 2 Lite

amazonamazon/nova-2-lite

API guide

Chat completion

Call Nova 2 Lite through TheRouter's OpenAI-compatible surface. TheRouter handles the Bedrock InvokeModel / Converse translation upstream β€” your client code stays OpenAI-shaped.

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "amazon/nova-2-lite",
    "messages": [{"role": "user", "content": "Summarise this 200-page PDF in 5 bullets."}]
  }'

Streaming

Stream tokens for chat UIs. With extended thinking enabled, time-to-first-token grows with the chosen budget; streaming hides the latency once generation starts.

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "amazon/nova-2-lite",
    "stream": true,
    "messages": [{"role": "user", "content": "Explain DSA attention in 200 words."}]
  }'

Tool use

Nova 2 Lite supports function calling through the standard tools/tool_choice fields. Note: web grounding and the code interpreter are managed by Bedrock as runtime tools, separate from your declared functions.

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "amazon/nova-2-lite",
    "messages": [{"role": "user", "content": "Look up the AWS region for Tokyo."}],
    "tools": [{
      "type": "function",
      "function": {
        "name": "lookup_region",
        "parameters": {"type": "object", "properties": {"city": {"type": "string"}}}
      }
    }]
  }'

Structured JSON

Use response_format to constrain output to JSON. Useful for downstream parsers; pair with a JSON schema in the system prompt for stricter shape control.

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "amazon/nova-2-lite",
    "response_format": {"type": "json_object"},
    "messages": [
      {"role": "system", "content": "Return JSON: {\"intent\":string,\"entities\":string[]}"},
      {"role": "user", "content": "Book a flight from Tokyo to Sydney next Friday."}
    ]
  }'

Vision input

Nova 2 Lite is natively multimodal β€” pass images alongside text in the OpenAI-compatible content array. Per AWS, document and short video inputs are also supported.

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "amazon/nova-2-lite",
    "messages": [{
      "role": "user",
      "content": [
        {"type": "text", "text": "Extract the invoice total and due date."},
        {"type": "image_url", "image_url": {"url": "https://example.com/invoice.png"}}
      ]
    }]
  }'

Extended thinking

Off by default. Enable via the reasoning field and pick a budget β€” low / medium / high β€” to trade speed for depth. AWS recommends starting off, then stepping up only on tasks that need it.

cURL
curl https://api.therouter.ai/v1/chat/completions \
  -H "Authorization: Bearer $THEROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "amazon/nova-2-lite",
    "reasoning": {"effort": "medium"},
    "messages": [{"role": "user", "content": "Plan a multi-step deployment migration."}]
  }'
Fact ledger β€” every claim on this page traces here
sourceURLretrieved
Release windowaws.amazon.com β†—2026-05-22verified
Bedrock model idaws.amazon.com β†—2026-05-22verified
Training cutoffβ€”β€”unknown
Extended thinking budget levelsaws.amazon.com β†—2026-05-22verified
Built-in toolsaws.amazon.com β†—2026-05-22verified
Customizationaws.amazon.com β†—2026-05-22verified
Bedrock tiersaws.amazon.com β†—2026-05-22to verify
Licenseβ€”β€”verified
MMLU-Promedium.com β†—2026-05-22single source
GPQA Diamondmedium.com β†—2026-05-22single source
Artificial Analysis Intelligence Indexmedium.com β†—2026-05-22single source
Long-context benchmarks (LongCodeBench 1M, OpenAI-MRCR)assets.amazon.science β†—2026-05-22unknown
AWS introduces Nova 2 Lite β€” 1M context, extended thinking, web grounding built inaws.amazon.com/blogs/aws β†—2026-05-22verified
Amazon publishes Nova 2 technical reportassets.amazon.science β†—2026-05-22verified
What is the context window of Nova 2 Lite?aws.amazon.com β†—2026-05-22to verify
Does Nova 2 Lite support extended reasoning?aws.amazon.com β†—2026-05-22to verify
What tools come built in?aws.amazon.com β†—2026-05-22to verify
Can I fine-tune Nova 2 Lite?aws.amazon.com β†—2026-05-22to verify
How does Nova 2 Lite pricing compare across Bedrock tiers?aws.amazon.com β†—2026-05-22to verify
Customer Support