# NVIDIA: Nemotron 3 Nano 30B A3B — Use via Hanzo AI API > NVIDIA Nemotron 3 Nano 30B A3B is a small language MoE model with highest compute efficiency and accuracy for developers to build specialize... Access via Hanzo's OpenAI-compatible API. Context: 262K. Get started free. [Models](https://hanzo.ai/models)/[NVIDIA](https://hanzo.ai/models/nvidia)/nemotron-3-nano-30b-a3b # NVIDIA: Nemotron 3 Nano 30B A3B [NVIDIA](https://hanzo.ai/models/nvidia) NVIDIA Nemotron 3 Nano 30B A3B is a small language MoE model with highest compute efficiency and accuracy for developers to build specialized agentic AI systems. The model is fully... text [Get API Key](https://hanzo.ai/signup)[View Docs](https://docs.hanzo.ai)[Try in Chat](https://hanzo.ai/chat) ## Specifications Context Window 262K Modalities text Input $0.060 / M tokens Output $0.240 / M tokens Status available Category third-party Model ID nvidia/nemotron-3-nano-30b-a3b ## Quick Start TypeScript ``` import OpenAI from 'openai' const client = new OpenAI({ apiKey: process.env.HANZO_API_KEY, baseURL: 'https://api.hanzo.ai/v1' }) const response = await client.chat.completions.create({ model: 'nvidia/nemotron-3-nano-30b-a3b', messages: [{ role: 'user', content: 'Hello!' }] }) console.log(response.choices[0].message.content) ``` Python ``` from openai import OpenAI client = OpenAI( api_key=os.environ["HANZO_API_KEY"], base_url="https://api.hanzo.ai/v1" ) response = client.chat.completions.create( model="nvidia/nemotron-3-nano-30b-a3b", messages=[{"role": "user", "content": "Hello!"}] ) print(response.choices[0].message.content) ``` cURL ``` curl https://api.hanzo.ai/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $HANZO_API_KEY" \ -d '{ "model": "nvidia/nemotron-3-nano-30b-a3b", "messages": [{"role": "user", "content": "Hello!"}] }' ``` Go ``` package main import ( "context" "fmt" "os" "github.com/sashabaranov/go-openai" ) func main() { cfg := openai.DefaultConfig(os.Getenv("HANZO_API_KEY")) cfg.BaseURL = "https://api.hanzo.ai/v1" client := openai.NewClientWithConfig(cfg) resp, _ := client.CreateChatCompletion(context.Background(), openai.ChatCompletionRequest{ Model: "nvidia/nemotron-3-nano-30b-a3b", Messages: []openai.ChatCompletionMessage{ {Role: openai.ChatMessageRoleUser, Content: "Hello!"}, }, }, ) fmt.Println(resp.Choices[0].Message.Content) } ``` ## More from NVIDIA [NVIDIA: Nemotron 3 Nano 30B A3B (free)256KNVIDIA Nemotron 3 Nano 30B A3B is a small language MoE model with highest compute efficiency and accuracy for developers to build specialized agentic AI systems. The model is fully...](https://hanzo.ai/models/nvidia/nemotron-3-nano-30b-a3b:free)[NVIDIA: Nemotron 3 Nano Omni (free)256KNVIDIA Nemotron™ 3 Nano Omni is a 30B-A3B open multimodal model designed to function as a perception and context sub-agent in enterprise agent systems. It accepts text, image, video, and...](https://hanzo.ai/models/nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free)[NVIDIA: Nemotron 3 Super1MNVIDIA Nemotron 3 Super is a 120B-parameter open hybrid MoE model, activating just 12B parameters for maximum compute efficiency and accuracy in complex multi-agent applications. Built on a hybrid Mamba-Transformer...](https://hanzo.ai/models/nvidia/nemotron-3-super-120b-a12b)[NVIDIA: Nemotron 3 Super (free)262KNVIDIA Nemotron 3 Super is a 120B-parameter open hybrid MoE model, activating just 12B parameters for maximum compute efficiency and accuracy in complex multi-agent applications. Built on a hybrid Mamba-Transformer...](https://hanzo.ai/models/nvidia/nemotron-3-super-120b-a12b:free)[NVIDIA: Nemotron 3 Ultra512KNVIDIA Nemotron 3 Ultra is an open frontier-reasoning and orchestration model from NVIDIA, with 55B active parameters out of 550B total (MoE). Built on a hybrid Transformer-Mamba mixture-of-experts architecture, it...](https://hanzo.ai/models/nvidia/nemotron-3-ultra-550b-a55b)[NVIDIA: Nemotron 3 Ultra (batch)512KNVIDIA Nemotron 3 Ultra is an open frontier-reasoning and orchestration model from NVIDIA, with 55B active parameters out of 550B total (MoE). Built on a hybrid Transformer-Mamba mixture-of-experts architecture, it...](https://hanzo.ai/models/nvidia/nemotron-3-ultra-550b-a55b:batch) [View all NVIDIA models →](https://hanzo.ai/models/nvidia) ## Use NVIDIA: Nemotron 3 Nano 30B A3B via Hanzo AI One API key. Every major model. OpenAI-compatible. Start free. [Get Free API Key](https://hanzo.ai/signup)[Browse All Models](https://hanzo.ai/models)