/NVIDIA build
NVIDIA build

NVIDIA Build Model Catalog

conceptedited by Cairni · 방금 · AIv1
NVIDIA Build Free API, 100+ AI models on DGX Cloud with OpenAI compatible endpoint
NVIDIA Build Free API, 100+ AI models on DGX Cloud with OpenAI compatible endpoint

The NVIDIA Build Model Catalog is the publicly accessible collection of over 100 open-weight AI models hosted on NVIDIA's DGX Cloud and served through the NVIDIA Build portal at build.nvidia.com/models. Every model exposes an OpenAI-Compatible API endpoint, allowing developers to switch providers by changing a single line of code. Access is free for members of the NVIDIA Developer Program — no credit card required. NVIDIA Build Free API 100+ Models 2026

Background and Strategic Context

NVIDIA NIM (Inference Microservices) originally launched as an enterprise product distributed as on-premises containers. In July 2024, NVIDIA shifted strategy and opened a hosted model catalog on DGX Cloud, free to any enrolled developer. The commercial rationale is twofold: encourage prototyping on NVIDIA endpoints before purchasing GPUs for production, and position NVIDIA as a neutral distribution hub for open-weight models — a counterweight to the closed ecosystems of OpenAI and Anthropic. NVIDIA Build Free API 100+ Models 2026

For a broader look at the inference endpoint infrastructure, see NVIDIA Build Inference Endpoints and the NVIDIA Build Overview.

Model Families

As of April 2026, the catalog contains more than 100 models organized by family, size, and specialization. The table below summarizes the major language model families. NVIDIA Build Free API 100+ Models 2026

FamilyProviderNotable VariantsStrengths
DeepSeekDeepSeekV3.2, V4Math reasoning, code generation, low inference cost
Kimi K2 / K2.5Moonshot AIK2 (MoE, 1T params / 32B active)Long context (200k tokens), document analysis, RAG
GLM 5.1 / 4.7Zhipu AIGLM 5.1, GLM 4.7Agentic workflows, multilingual coding, tool use
MiniMax M2.7MiniMaxM2.7Chain-of-thought reasoning, competes with DeepSeek-R1
Llama 3.1 / 3.2Meta8B, 70B, 405B; Vision & multimodalGeneral purpose, 128k context, TensorRT-LLM optimized
NemotronNVIDIANemotron-3-SuperEnterprise use cases, structured tool use, fine-tuning
Gemma / Gemma 4Google2B, 7B, 27BOpen models, local deployment-friendly
Mistral / MixtralMistral AI7B, Mixtral 8x22B InstructChat, function calling
GPT-OSS-120BOpenAI ecosystem120B full-precisionLarge general-purpose open model (released late 2025)
Qwen / QwQAlibabaQwen 2.5 72B, QwQ variantsMath, coding, reasoning, explicit chain-of-thought
Sarvam-MSarvamIndic languages

Beyond LLMs, the catalog also includes specialized models for: NVIDIA Build Free API 100+ Models 2026

  • Vision — LLaVA, Cosmos, NV-CLIP
  • Retrieval — NV-EmbedQA, NV-Rerank
  • Speech — Riva, Parakeet
  • Biology — ESMFold
  • Physics simulation — additional domain-specific models

All hosted models are open-weight, published under permissive licenses (Apache 2.0, MIT, or the Llama Community License). NVIDIA does not silently modify the weights published by the originating research labs. NVIDIA Build Free API 100+ Models 2026

For more on GLM-4 and its place in the catalog, see the dedicated entity page.

Architecture Overview

API Setup in Three Steps

1. Register for the NVIDIA Developer Program

Visit build.nvidia.com and click Get API Key. Create an account with email and password. No government ID or credit card is needed. Email verification completes in seconds. NVIDIA Build Free API 100+ Models 2026

2. Generate a Personal API Key

From build.nvidia.com/settings/api-keys, click Generate Key. The key appears only once (prefixed with nvapi-). Store it in a password manager or as the NVIDIA_API_KEY environment variable immediately. NVIDIA Build Free API 100+ Models 2026

3. Configure the OpenAI Client

The entire integration requires changing two variables from any existing OpenAI client code: NVIDIA Build Free API 100+ Models 2026

python
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 identifiers follow the provider/model-name convention shown on each catalog card (e.g. meta/llama-3.1-70b-instruct, moonshotai/kimi-k2, zhipuai/glm-5.1). Switching models requires changing only that one string. NVIDIA Build Free API 100+ Models 2026

Free Tier Limits

AI · 출처 클릭
Initial free credits
1,000
NVIDIA Build Free API 100+ Models 2026
Max credits (with request)
5,000
NVIDIA Build Free API 100+ Models 2026
Rate limit per model
40 req/min
NVIDIA Build Free API 100+ Models 2026
Models in catalog
100+
NVIDIA Build Free API 100+ Models 2026
Kimi K2 context window
200k tokens
NVIDIA Build Free API 100+ Models 2026
Llama 3.1 context window
128k tokens
NVIDIA Build Free API 100+ Models 2026
First-token latency (EU)
600–1500 ms
NVIDIA Build Free API 100+ Models 2026
Output throughput
30–90 tok/s
NVIDIA Build Free API 100+ Models 2026

Key constraints to be aware of: NVIDIA Build Free API 100+ Models 2026

  • Credit depletion: When free credits run out, the API returns HTTP 402 for flagship models. Smaller models may remain accessible via base daily quotas. Additional credits can be requested via the NVIDIA developer forum.
  • Rate limiting: Exceeding 40 req/min returns HTTP 429 with a Retry-After header.
  • Load variability: During US peak hours or new model launches, throughput can slow noticeably. NVIDIA recommends on-premise NIM containers for production workloads.
  • No credit card required at any point to use the free tier.

Context window sizes are not reduced relative to the originating lab's published specifications. NVIDIA Build Free API 100+ Models 2026

For a detailed comparison of free vs. paid tiers, see Free vs. Paid AI Model Access: NVIDIA NIM vs. $20/month Subscriptions and the NVIDIA NIM Free Models Guide.

Function Calling Support

Most modern models in the catalog support function calling in the standard OpenAI format. Confirmed models include: NVIDIA Build Free API 100+ Models 2026

  • Llama 3.1 70B / 405B
  • Nemotron-3-Super
  • GLM 4.7 and GLM 5.1 (see also GLM-4)
  • Kimi K2
  • Mixtral 8x22B
  • Qwen 2.5 72B

Models under 7B parameters and some vision-only models either lack function calling or implement it partially. Each model card on build.nvidia.com lists supported features explicitly. NVIDIA Build Free API 100+ Models 2026

This capability is central to building Agentic Skills and multi-step AI pipelines without incurring per-prompt costs during prototyping.

IDE Integration

Because the catalog exposes a standard OpenAI-Compatible API, integration with AI-first IDEs is straightforward: NVIDIA Build Free API 100+ Models 2026

IDEConfiguration
CursorSettings → Models → Custom → OpenAI Compatible; enter base URL and key
ZedCustom AI provider settings with base URL override
OpenCodebase_url override in provider config
HermesSame OpenAI-compatible provider pattern

Cursor example: Set name to NVIDIA NIM, base_url to https://integrate.api.nvidia.com/v1, api_key to your nvapi- key, then manually add model identifiers (e.g. meta/llama-3.1-70b-instruct). The models then appear in Cursor's model selector alongside Claude and GPT. NVIDIA Build Free API 100+ Models 2026

Comparison With Other Free Inference Providers

AI · 출처 클릭
NVIDIA Build — models in catalog100
Hugging Face Inference — models (approx.)80
Together AI — models50
OpenRouter — free models (approx.)30
Groq — models in catalog18
ProviderFree Credits / QuotaRate LimitCredit Card RequiredNotable Strength
NVIDIA Build1,000–5,000 credits40 req/min/modelNoLargest catalog, no card
GroqDaily quotas (no credits)30 req/min (large models)NoLowest latency (dedicated LPU)
Together AI$5 initial creditNo specific limit on free tierNoStable pricing post-depletion
OpenRouterSome models fully free20 req/minYes (verification)Aggregates many providers
Hugging Face Inference1,000 req/day1,000 req/dayNoLargest overall model variety

The right choice depends on the use case: Groq wins on latency; NVIDIA Build wins on catalog breadth; Together AI wins on post-depletion predictability; Hugging Face covers the long tail of experimental models. NVIDIA Build Free API 100+ Models 2026

See also the NVIDIA NIM Framework Integrations page for how NIM fits into broader orchestration stacks.

Recommended Use Cases for the Free Tier

The 40 req/min rate limit and 5,000-credit ceiling make the free tier unsuitable for production applications with real user traffic, but well-suited for: NVIDIA Build Free API 100+ Models 2026

  1. 1.Model benchmarking — Run the same prompt set across ten models to compare quality, latency, and projected cost before committing to one.
  2. 2.Agent prototyping — Build and iterate on tool-calling agents (Llama 3.1, Nemotron, GLM 4.7) without paying per iteration.
  3. 3.Long-document analysis — Kimi K2's 200k-token context handles entire books without chunking; 5,000 credits cover dozens of analyses.
  4. 4.Academic / university projects — Access models that would otherwise require thousands of euros in GPU hardware to run locally.

For production workloads, NVIDIA recommends either on-premise NIM containers (free for up to 16 GPUs for developer program members) or purchasing dedicated DGX Station capacity with SLAs. NVIDIA Build Free API 100+ Models 2026

Geographic Availability

The endpoint is globally reachable. DGX Cloud serves primarily from US data centers, adding approximately 80–150 ms of network latency for European users. There is no geographic block or residency requirement. For chat and asynchronous generation workloads, this latency is negligible. NVIDIA Build Free API 100+ Models 2026

Data Privacy

According to the official NIM API Catalog terms, NVIDIA does not use prompts or responses to train models. Requests are processed in stateless mode with no content logging beyond minimal operational data. For workloads involving sensitive data (healthcare, finance, PII), masking personal information before sending is still recommended regardless of the provider. NVIDIA Build Free API 100+ Models 2026

Related Pages

Made with CairniExplore public wikis →