Amazon Nova Micro
How TheRouter serves this differently from the vendor
AWS serves Nova Micro through Bedrock bedrock-runtime with Converse, Invoke, response streaming, guardrails, client-side tool calling, and prompt caching. The native Bedrock card marks structured outputs unsupported and lists text as the only input and output modality.
TheRouter exposes the same text-only model as OpenAI-compatible /v1/chat/completions under amazon/nova-micro and currently routes it through the US geo Bedrock profile. TheRouter does not make Bedrock structured outputs or non-text modalities available for this model.
API guide
Chat completion
Call Nova Micro through TheRouter's OpenAI-compatible chat surface for low-cost text tasks.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "amazon/nova-micro",
"messages": [{"role": "user", "content": "Classify this support ticket as billing, technical, or sales."}]
}'Streaming
Bedrock supports response streaming for Nova Micro; use it for chat UIs and long summaries.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "amazon/nova-micro",
"stream": true,
"messages": [{"role": "user", "content": "Summarize this incident report in five bullets."}]
}'Client-side tool calling
AWS marks client-side tool calling as supported. Use it for lightweight dispatch after Nova Micro classifies or extracts the required arguments.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "amazon/nova-micro",
"messages": [{"role": "user", "content": "Route this ticket: I cannot update my card."}],
"tools": [{
"type": "function",
"function": {
"name": "route_ticket",
"parameters": {"type": "object", "properties": {"queue": {"type": "string"}}}
}
}]
}'Prompt-constrained JSON
Nova Micro does not support Bedrock native structured outputs. Ask for JSON explicitly and validate downstream.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "amazon/nova-micro",
"messages": [
{"role": "system", "content": "Return only JSON with keys intent and urgency."},
{"role": "user", "content": "Need this invoice fixed today."}
]
}'Fact ledger β every claim on this page traces here
| source | URL | retrieved | |
|---|---|---|---|
| Launch date | docs.aws.amazon.com/bedrock β | 2026-08-08 | verified |
| Lifecycle | docs.aws.amazon.com/bedrock β | 2026-08-08 | verified |
| Knowledge cutoff | docs.aws.amazon.com/bedrock β | 2026-08-08 | verified |
| Bedrock model id | docs.aws.amazon.com/bedrock β | 2026-08-08 | verified |
| TheRouter upstream profile | docs.aws.amazon.com/bedrock β | 2026-08-08 | verified |
| Prompt caching | docs.aws.amazon.com/bedrock β | 2026-08-08 | verified |
| Unsupported Bedrock feature | docs.aws.amazon.com/bedrock β | 2026-08-08 | verified |
| Public benchmark disclosure | docs.aws.amazon.com/bedrock β | 2026-08-08 | unknown |
| Nova family service card | docs.aws.amazon.com/ai/responsible-ai β | 2026-08-08 | verified |
| Latency / throughput ledger | docs.aws.amazon.com/bedrock β | 2026-08-08 | unknown |
| AWS launches Amazon Nova Micro as the fastest text-only Nova model | docs.aws.amazon.com/bedrock β | 2026-08-08 | verified |
| Amazon updates responsible AI service card for Nova Micro, Lite, Pro, and Premier | docs.aws.amazon.com/ai/responsible-ai β | 2026-08-08 | verified |
| Is Amazon Nova Micro text-only? | docs.aws.amazon.com/bedrock β | 2026-08-08 | to verify |
| What context window does Nova Micro have? | docs.aws.amazon.com/bedrock β | 2026-08-08 | to verify |
| Does Nova Micro support structured outputs? | docs.aws.amazon.com/bedrock β | 2026-08-08 | to verify |
| Which Bedrock model id backs TheRouter's amazon/nova-micro? | docs.aws.amazon.com/bedrock β | 2026-08-08 | to verify |
| Should new workloads use Nova Micro or Nova 2 Lite? | docs.aws.amazon.com/ai/responsible-ai β | 2026-08-08 | to verify |