Skip to main content
NVIDIA
Explore
Models
Skills
Blueprints
GPUs
Docs
Help Center
Getting Started
  1. Create and verify your account to unlock full access to NVIDIA NIM APIs.
ResourcesDeveloper ForumsContact Support
FAQs
  • Terms of Use
    Privacy Policy
    Your Privacy Choices
    Contact

    Copyright © 2026 NVIDIA Corporation

    nvidia/nemotron-3-nano-30b-a3b

    API Reference
    This API will be deprecated on 08/31/2026. It will no longer be supported after 08/31/2026. Please transition to another model to avoid any service interruptions. For more models information, visit our API Reference.

    Prototype

    Start building with a free API endpoint.
    from openai import OpenAI
    
    client = OpenAI(
      base_url = "https://integrate.api.nvidia.com/v1",
      api_key = "$NVIDIA_API_KEY"
    )
    
    
    completion = client.chat.completions.create(
      model="nvidia/nemotron-3-nano-30b-a3b",
      messages=[{"role":"user","content":"Write a limerick about the wonders of GPU computing."}],
      temperature=1,
      top_p=1,
      max_tokens=16384,
      extra_body={"reasoning_budget":16384},
      stream=True
    )
    
    for chunk in completion:
      if not chunk.choices:
        continue
      if chunk.choices[0].delta.content is not None:
        print(chunk.choices[0].delta.content, end="")

    Deploy

    Ready to scale? Choose your deployment path.

    Available Integrations

    Deploy this model now on your endpoint provider of choice

    Specifications

    Open, efficient MoE model with 1M context, excelling in coding, reasoning, instruction following, tool calling, and more

    • Instruction Following
    • Long Context
    • MoE
    • Reasoning
    Provider
    NVIDIA
    Last Modified
    8 months ago
    Context Length
    262K
    Parameters
    33B
    Input Modalities
    Text
    Output Modalities
    Text

    Model Availability

    Free Endpoint
    Available
    Partner Endpoint
    Available
    Download Available
    Available
    API calls in last 30 days
    12M