All models
Amazon
Amazon Nova Lite
- Input
- $0.06
- per M tokens
- Output
- $0.24
- per M tokens
- Cache read
- —
- not offered on this model
- Context
- 300K
- tokens
Registry contract
Capabilities
amazon/nova-lite- Protocols
- 3
- Chat · Responses · Messages · streaming
- Tools
- None
- Not supported
- JSON Schema
- None
- Not supported
- Vision
- No
- Not supported
- Reasoning
- None
- No public control
- Output limit
- 5,000
- tokens
canonical amazon/nova-lite · revision amazon/nova-lite · aliases amazon.nova-lite-v1:0, nova-lite
Provider list price
Pricing
USD / 1M tokens
| Input | $0.06 / M tokens |
| Output | $0.24 / M tokens |
| Routing | Free |
Provider list price. BYOK bills your provider; managed credits draw down at these rates. No markup or request fee. Every request is metered per engineer and joined to shipped work.
Registry 2026-09-17.2 · effective 9/17/2026 · Amazon Bedrock pricing
First request
Run it
Python · TokenSpend SDK
from tokenspend import TokenSpend
client = TokenSpend()
resp = client.chat.completions.create(
model="amazon/nova-lite",
messages=[{"role": "user", "content": "hello"}],
)TypeScript · TokenSpend SDK
import { TokenSpend } from "@tokenspend/sdk";
const client = new TokenSpend();
const resp = await client.chat.completions.create({
model: "amazon/nova-lite",
messages: [{ role: "user", content: "hello" }]
});curl
curl https://api.tokenspend.dev/v1/chat/completions \
-H "content-type: application/json" \
-H "Authorization: Bearer $TOKENSPEND_API_KEY" \
-d '{"model":"amazon/nova-lite","messages":[{"role":"user","content":"hello"}]}'Claude Code integration
export ANTHROPIC_BASE_URL=https://api.tokenspend.dev export ANTHROPIC_API_KEY=$TOKENSPEND_API_KEY export ANTHROPIC_MODEL=amazon/nova-lite
One request shape reaches every model. Claude Code connects as an integration with two environment variables. Prompts are not stored unless you enable request logging.