---
title: "Nemotron 3 Super"
description: "Long-context reasoning and tool use. API identifier nemotron3-super, 262,144-token context window"
canonical: "https://inference.boundless.network/models/nemotron3-super"
---

# Nemotron 3 Super

Long-context reasoning and tool use.

| | |
| --- | --- |
| API identifier | `nemotron3-super` |
| Developer | NVIDIA |
| Context window | 262,144 tokens |
| Supports | text, reasoning, tool-use |
| Status | Serving |

## Rates

US dollars per 1M tokens, on-demand tier.

| Input | Cached input | Output |
| --- | --- | --- |
| $0.12 | $0.06 | $0.52 |

## Call it

Put `nemotron3-super` in the `model` field. The same request works against the Anthropic Messages API — see [API Compatibility](https://inference.boundless.network/docs/api-compatibility).

```bash
curl https://api.inference.boundless.network/v1/chat/completions \
  -H "Authorization: Bearer $BOUNDLESS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "nemotron3-super",
    "messages": [{
      "content": "Say hello",
      "role": "user"
    }]
  }'
```

Every model we serve is listed at [Models](https://inference.boundless.network/models); the rate card in full is on [Pricing](https://inference.boundless.network/docs/pricing).
