# NVIDIA: Nemotron 3.5 Lightning — Use via Hanzo AI API

> NVIDIA Nemotron 3.5 Lightning is an open mixture-of-experts model from NVIDIA, with 3B active parameters out of 30B total. It is suited for ... Access via Hanzo&#x27;s OpenAI-compatible API. Context: 262K. Get started free.

[Models](https://hanzo.ai/models)/[NVIDIA](https://hanzo.ai/models/nvidia)/nemotron-3.5-lightning

# NVIDIA: Nemotron 3.5 Lightning

[NVIDIA](https://hanzo.ai/models/nvidia)

NVIDIA Nemotron 3.5 Lightning is an open mixture-of-experts model from NVIDIA, with 3B active parameters out of 30B total. It is suited for high-throughput agentic workloads and specialized tasks that...

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.096 / M tokens

Output

$0.240 / M tokens

Status

available

Category

third-party

Model ID

nvidia/nemotron-3.5-lightning

## Quick Start

TypeScript

```
import OpenAI from &#x27;openai&#x27; const client = new OpenAI({ apiKey: process.env.HANZO_API_KEY, baseURL: &#x27;https://api.hanzo.ai/v1&#x27; }) const response = await client.chat.completions.create({ model: &#x27;nvidia/nemotron-3.5-lightning&#x27;, messages: [{ role: &#x27;user&#x27;, content: &#x27;Hello!&#x27; }] }) 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.5-lightning", 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 &#x27;{ "model": "nvidia/nemotron-3.5-lightning", "messages": [{"role": "user", "content": "Hello!"}] }&#x27;
```

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.5-lightning", Messages: []openai.ChatCompletionMessage{ {Role: openai.ChatMessageRoleUser, Content: "Hello!"}, }, }, ) fmt.Println(resp.Choices[0].Message.Content) }
```

## More from NVIDIA

[NVIDIA: Nemotron 3 Nano 30B A3B262KNVIDIA 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)[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.5 Lightning 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)
