NVIDIA Build Inference Endpoints
Overview
Inference Endpoints on NVIDIA Build provide free inference access to more than 100 AI and machine learning models hosted on NVIDIA's DGX Cloud. Developers can use these endpoints to experiment with and integrate powerful models without upfront cost — no credit card required — via an OpenAI-Compatible API endpoint, as part of the broader NVIDIA Build Overview platform experience. NVIDIA Build Overview NVIDIA Build Free API 100+ Models 2026
Model Categories
The inference endpoints are organized into four skill domains, each grouping models by their primary use case: NVIDIA Build Overview
| Category | Number of Skills |
|---|---|
| AI and Machine Learning | 143 skills |
| Accelerated Computing | 25 skills |
| Physical AI | 37 skills |
| Developer Tools | 10 skills |
Featured Models
The following models are highlighted as available through the inference endpoints: NVIDIA Build Overview
- z-ai glm-5.2 — Tagged as *Agentic AI* (+3 additional tags)
- nvidia nemotron-3-ultra-550b-a55b — Tagged as *Agent* (+4 additional tags)
- nvidia cosmos3-nano-reasoner — Tagged as *Physical AI* (+7 additional tags)
- deepseek-ai deepseek-v4-pro — Tagged as *MoE* (+3 additional tags)
Relationship to the NVIDIA Build Ecosystem
Inference Endpoints are one of several core capabilities offered within NVIDIA Build. They complement:
- Agentic Skills — Pre-built capabilities that agents can call, enabling models accessed via endpoints to be wired into agentic workflows.
- NemoClaw — NVIDIA's safe agent execution environment, which can leverage inference endpoints for secure, access-controlled AI operations.
- Blueprint Collection — Workflow templates and code samples that can be built on top of inference endpoint-backed models.
- DGX Station — Step-by-step playbooks (including NemoClaw setup) that may utilize inference endpoints as part of personal AI agent configuration.
Architecture
Key Points
- Inference is offered free for the listed models. NVIDIA Build Overview
- Models span a broad range of AI disciplines, from general machine learning to physical AI (robotics/simulation) and specialized developer tooling. NVIDIA Build Overview
- The endpoint catalog includes models from both NVIDIA and third-party providers (e.g., DeepSeek, z-ai). NVIDIA Build Overview
OpenAI-Compatible API
Every model in the catalog exposes the /v1/chat/completions endpoint in the exact format defined by the OpenAI API. Existing code written against openai.ChatCompletion.create() works by changing two variables: base_url becomes https://integrate.api.nvidia.com/v1 and the API key becomes the one generated on build.nvidia.com. NVIDIA Build Free API 100+ Models 2026
Model identifiers follow the convention provider/model-name visible on each model's catalog page (e.g. meta/llama-3.1-70b-instruct, deepseek-ai/deepseek-v3.1, zhipuai/glm-5.1). NVIDIA Build Free API 100+ Models 2026
from openai import OpenAI
client = OpenAI(
base_url="https://integrate.api.nvidia.com/v1",
api_key="nvapi-XXXXXXXXXXXXXXXXXXXXXXXXXXXX"
)
response = client.chat.completions.create(
model="deepseek-ai/deepseek-v3.1",
messages=[{"role": "user", "content": "Explain in two lines what a MoE is."}],
temperature=0.6,
max_tokens=512,
stream=False,
)
print(response.choices[0].message.content)Model Catalog (2026)
The catalog at build.nvidia.com/models contains more than 100 models organized by family, size, and specialization, covering general-purpose LLMs, coding, reasoning, multilingual, and vision tasks. NVIDIA Build Free API 100+ Models 2026
| Family | Notable Models | Strengths |
|---|---|---|
| DeepSeek | DeepSeek 3.2, V4 | Math reasoning, code generation |
| Kimi (Moonshot AI) | Kimi K2.5 (MoE, 1T params / 32B active) | Long context (200k tokens), RAG |
| GLM (Zhipu AI) | GLM 5.1, GLM 4.7 | Agentic workflows, multilingual coding, tool use |
| MiniMax | M2.7 | Chain-of-thought reasoning |
| Llama (Meta) | Llama 3.1 8B/70B/405B, Llama 3.2, Vision | General purpose, TensorRT-LLM optimized |
| Nemotron (NVIDIA) | Nemotron-3-Super | Enterprise, structured tool use, fine-tuning |
| Gemma (Google) | 2B, 7B, 27B, Gemma 4 | Lightweight open models |
| Mistral / Mixtral | 7B, Mixtral 8x22B Instruct | Chat, function calling |
| GPT-OSS-120B | GPT-OSS-120B | Full-precision open model |
| Qwen / QwQ (Alibaba) | Qwen 2.5 72B | Math, coding, reasoning, chain-of-thought |
| Sarvam-M | Sarvam-M | Indic languages |
Specialized models for vision (LLaVA, Cosmos, NV-CLIP), retrieval (NV-EmbedQA, NV-Rerank), speech (Riva, Parakeet), biology (ESMFold), and physics simulation are also available. All hosted models are open-weight, published under permissive licenses (Apache 2.0, MIT, Llama Community License). NVIDIA Build Free API 100+ Models 2026
Free Tier Limits
- Credits: Enrolling grants 1,000 initial credits; up to 4,000 additional credits can be requested via the developer forum (5,000 total). Credit consumption varies by model size. NVIDIA Build Free API 100+ Models 2026
- Rate limits: 40 requests/minute per model at the account level; exceeding this returns HTTP 429 with a
Retry-Afterheader. NVIDIA Build Free API 100+ Models 2026 - Context sizes: Not reduced from the originating lab's standard — Llama 3.1 70B keeps 128k tokens, Kimi K2 keeps 200k, DeepSeek V4 keeps 64k. NVIDIA Build Free API 100+ Models 2026
- After credits run out: API returns HTTP 402 on paid models; some smaller models remain accessible via base daily quotas. NVIDIA Build Free API 100+ Models 2026
- Data usage: NVIDIA states it does not use prompts or responses to train models; requests are processed in stateless mode. NVIDIA Build Free API 100+ Models 2026
Production note: The free tier is suited to prototyping and benchmarking, not production traffic. For production, NVIDIA recommends on-premise NVIDIA NIM container deployment (free for up to 16 GPUs for developer program members) or DGX Cloud with dedicated SLAs. NVIDIA Build Free API 100+ Models 2026
IDE Integration
Because the endpoint is OpenAI-compatible, it integrates trivially with AI-first IDEs such as Cursor, Zed, OpenCode, and Hermes. The standard procedure is to enter https://integrate.api.nvidia.com/v1 as the base_url and the nvapi- key as the api_key in the IDE's custom AI provider settings. NVIDIA Build Free API 100+ Models 2026
For more details on NVIDIA NIM Framework Integrations and how these endpoints compare with paid alternatives, see Free vs. Paid AI Model Access: NVIDIA NIM vs. $20/month Subscriptions.
Comparison With Other Free Inference Providers
| Provider | Free Models | Rate Limit | Credits / Quota | Credit Card |
|---|---|---|---|---|
| NVIDIA Build | 100+ | 40 req/min/model | 1,000–5,000 credits | No |
| Groq | ~15–20 | 30 req/min (large) | Daily quota | No |
| Together AI | 50+ | No specific limit | $5 initial credit | No |
| OpenRouter | Many (varies) | 20 req/min | Credit-based | Yes (verification) |
| Hugging Face Inference | Large catalog | 1,000 req/day | Free tier | No |
NVIDIA Build Free API 100+ Models 2026