Amazon Nova API
Access Amazon Nova instantly with Puter.js, and add AI to any app in a few lines of code without backend or API keys.
// npm install @heyputer/puter.js
import { puter } from '@heyputer/puter.js';
puter.ai.chat("Explain AI like I'm five!", {
model: "amazon/nova-pro-v1"
}).then(response => {
console.log(response);
});
<html>
<body>
<script src="https://js.puter.com/v2/"></script>
<script>
puter.ai.chat("Explain AI like I'm five!", {
model: "amazon/nova-pro-v1"
}).then(response => {
console.log(response);
});
</script>
</body>
</html>
List of Amazon Nova Models
Amazon: Nova 2 Lite
amazon/nova-2-lite-v1
Amazon Nova 2 Lite is a fast, cost-effective multimodal reasoning model for everyday workloads that processes text, images, and video with a 1M token context window. It features extended thinking with adjustable reasoning intensity (low/medium/high) and built-in tools for web grounding and code execution. Released in December 2025, it excels at document processing, customer service chatbots, and agentic workflows.
ChatAmazon: Nova Premier 1.0
amazon/nova-premier-v1
Amazon Nova Premier is the most capable multimodal model in the Nova family, designed for complex reasoning tasks requiring the highest accuracy. It processes text, images, and video with advanced understanding capabilities and serves as the best teacher model for distilling custom variants of smaller Nova models. Best suited for sophisticated enterprise applications demanding top-tier intelligence.
ChatAmazon: Nova Lite 1.0
amazon/nova-lite-v1
Amazon Nova Lite is a very low-cost, lightning-fast multimodal model that processes text, images, and video inputs to generate text output. It supports up to 300K input tokens and can analyze multiple images or up to 30 minutes of video in a single request. Ideal for real-time customer interactions, document analysis, and visual question-answering tasks.
ChatAmazon: Nova Micro 1.0
amazon/nova-micro-v1
Amazon Nova Micro is a text-only model that delivers the lowest latency responses at the lowest cost in the Nova family. With a 128K token context window, it excels at text summarization, translation, content classification, interactive chat, and basic coding tasks. It's the fastest and most economical option when multimodal capabilities aren't needed.
ChatAmazon: Nova Pro 1.0
amazon/nova-pro-v1
Amazon Nova Pro is a highly capable multimodal model offering the best combination of accuracy, speed, and cost for a wide range of tasks. It supports up to 300K input tokens, excels at video summarization, financial document analysis, agentic workflows, and can process code bases with over 15,000 lines of code. It also serves as a teacher model for distilling custom variants of Nova Micro and Lite.
Frequently Asked Questions
The Amazon Nova API gives you access to models for AI chat. Through Puter.js, you can start using Amazon Nova models instantly with zero setup or configuration.
Puter.js supports a variety of Amazon Nova models, including Amazon: Nova 2 Lite, Amazon: Nova Premier 1.0, Amazon: Nova Lite 1.0, and more. Find all AI models supported by Puter.js in the AI model list.
With the User-Pays model, users cover their own AI costs through their Puter account. This means you can build apps without worrying about infrastructure expenses.
Puter.js is a JavaScript library that provides access to AI, storage, and other cloud services directly from a single API. It handles authentication, infrastructure, and scaling so you can focus on building your app.
Yes — the Amazon Nova API through Puter.js works with any JavaScript framework, Node.js, or plain HTML. Just include the library and start building. See the documentation for more details.