SAS Knowledge Hub | Reading time: 8 minutes | Skill level: Absolute beginner to developer
NVIDIA hosts over 100 AI models on its own GPU cloud and lets anyone use them for free. No credit card. No company email required to start. If you have wanted to experiment with DeepSeek, Llama, Qwen, Mistral or NVIDIA's own Nemotron models without paying a cent, this is the single best entry point in 2026.
This guide walks you through everything: signing up, getting your key, making your first call, what you can realistically build, and where the limits are.
What is NVIDIA Build?
NVIDIA Build (build.nvidia.com) is NVIDIA's hosted model catalogue, powered by their NIM (NVIDIA Inference Microservices) stack. NVIDIA runs the GPUs so you don't have to. You get:
- 100+ hosted models including DeepSeek V4, Llama, Qwen, Mistral, GLM, Kimi, and Nemotron
- A free API key the moment you join the free NVIDIA Developer Program
- An OpenAI-compatible endpoint, meaning any tool or code that works with OpenAI's API works here with two small changes
- Browser playgrounds on every model page, so you can test before writing any code
New models land fast. Flagship open-weight releases often appear on the catalogue within weeks of launch.
Step 1: Create your free account
- Go to build.nvidia.com
- Click Login (top right), then Create Account
- Any email works. A personal Gmail is fine to start. Verify your email (and phone if prompted)
- That's it. Creating the account enrols you in the free NVIDIA Developer Program automatically
You start with roughly 1,000 free inference credits (one credit is roughly one API request). You can request more from your profile: click your profile icon inside the catalogue, then Request More. Providing a business email activates a free 90-day NVIDIA AI Enterprise trial licence and unlocks an additional 4,000 credits, taking you to 5,000. NVIDIA has also been shifting toward rate-limited access rather than strict credit counting, and your account dashboard is the source of truth for your own ceiling.
Step 2: Generate your API key
- Open any model page, for example a Nemotron or DeepSeek model
- Click Get API Key (or go to build.nvidia.com/settings/api-keys)
- Copy the key immediately. It starts with
nvapi-and you only see it once
Security rules, non-negotiable:
- Never commit the key to Git or any public repo
- Never paste it into client-side JavaScript or a frontend app
- Store it in an environment variable or a secrets manager
- If it leaks, rotate it immediately in your API key settings
Step 3: Test in the browser first (zero code)
Every model page has a playground. Type a prompt, adjust temperature and max tokens on the right, and see the response. On the same page there is a code tab showing ready-to-copy snippets in Python, Node.js, and cURL for that exact model. This is the fastest way to compare models before committing to one.
Step 4: Make your first API call
The endpoint is OpenAI-compatible. Base URL: https://integrate.api.nvidia.com/v1
cURL (works anywhere, even Termux on your phone):
curl https://integrate.api.nvidia.com/v1/chat/completions \
-H "Authorization: Bearer $NVIDIA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-ai/deepseek-v4-flash",
"messages": [{"role": "user", "content": "Explain compound interest in one paragraph."}],
"max_tokens": 300
}'
Python (using the standard OpenAI library):
from openai import OpenAI
client = OpenAI(
base_url="https://integrate.api.nvidia.com/v1",
api_key="nvapi-YOUR-KEY-HERE" # better: os.environ["NVIDIA_API_KEY"]
)
response = client.chat.completions.create(
model="deepseek-ai/deepseek-v4-flash",
messages=[{"role": "user", "content": "Explain compound interest in one paragraph."}],
max_tokens=300
)
print(response.choices[0].message.content)
Node.js:
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://integrate.api.nvidia.com/v1",
apiKey: process.env.NVIDIA_API_KEY,
});
const response = await client.chat.completions.create({
model: "deepseek-ai/deepseek-v4-flash",
messages: [{ role: "user", content: "Explain compound interest in one paragraph." }],
max_tokens: 300,
});
console.log(response.choices[0].message.content);
Because the endpoint is OpenAI-compatible, it also plugs straight into tools like Cursor, Cline, Aider, LangChain, and n8n. Point the base URL at NVIDIA's endpoint, supply your key, and pick a model name from the catalogue.
What can you actually achieve with this?
- Chatbots and assistants: customer support prototypes, WhatsApp bot backends, internal Q&A tools
- Coding agents: connect a free model to Cline or Aider in VS Code and get an AI pair programmer for R0
- RAG and semantic search: embedding models like nemotron-3-embed-1b let you build "chat with your documents" over company knowledge bases
- Document processing: OCR models (nemotron-ocr-v2) extract text and tables from scans, invoices, and tender documents
- Multimodal work: models that understand images, video, and speech, plus text-to-image and text-to-speech generation
- Evaluation and benchmarking: test five different models against your use case before spending money anywhere
Our recommended starting models
| Use case | Model | Why | |---|---|---| | General reasoning and agents | nvidia/nemotron-3-ultra-550b-a55b | 1M context, strong tool calling | | Fast and cheap chat | deepseek-ai/deepseek-v4-flash | Quick, capable, 1M context | | Coding | z-ai/glm-5.2 or minimax-m3 | Built for agentic coding workflows | | Embeddings for RAG | nvidia/nemotron-3-embed-1b | Purpose-built retrieval model | | OCR / document extraction | nvidia/nemotron-ocr-v2 | Multilingual, handles tables | | Small multimodal | nvidia/nemotron-3-nano-omni-30b-a3b | Images, video, speech, text in one model |
Filter by "Free Endpoint" on the catalogue to see everything you can call at no cost.
The limits: read this before you build
1. Rate limit: roughly 40 requests per minute. This is the widely observed baseline per model. You can apply through NVIDIA for an increase (commonly to 200 RPM). If you hit HTTP 429, back off and retry.
2. Credits run out. 1,000 on signup, up to 5,000 with a business email. When they're gone you'll see HTTP 402 errors on flagship models. The community reports NVIDIA is generous with credit top-up requests made through the developer forum.
3. This is for development, testing, research, and evaluation only. NVIDIA's terms are explicit: serving real end-users counts as production and requires an NVIDIA AI Enterprise licence. Do not put the free endpoint in front of paying customers.
4. No uptime guarantees. Latency varies with demand. Never depend on the free tier for anything time-critical.
5. Privacy. NVIDIA states it does not use your prompts or responses to train models and processes requests statelessly. Still, treat it like any cloud endpoint: strip client PII, medical data, and financial identifiers before sending anything sensitive.
When you outgrow the free tier
Three paths:
- Partner inference providers. The same open models run on OpenRouter, Together AI, and DeepInfra at pay-per-token rates, usually a fraction of the cost of closed frontier models. This is the normal production route for most teams.
- Serverless NIM on Hugging Face. Pay-per-use, with the NVIDIA AI Enterprise licence included.
- Self-hosting NIM containers. Models marked "Downloadable" run as Docker containers on your own NVIDIA GPUs. Free for research and development under the Developer Program; production needs an AI Enterprise licence (roughly $4,500 per GPU per year, or about $1 per GPU hour in the cloud). Only relevant if you have serious GPU hardware or a client with strict data-residency requirements.
Quick FAQ
Do I need a credit card? No.
Do I need to be a developer? No. The browser playground needs zero code. The API needs basic copy-paste ability.
Can I use this from South Africa? Yes, it's globally accessible.
Which is better, this or ChatGPT/Claude subscriptions? Different tools. This gives you raw API access to open models for building things. Subscriptions give you a polished consumer product. If you're building software, start here.
What happens when free credits end? Request more, switch to a partner provider, or self-host.
Want help wiring one of these models into your business, from a WhatsApp bot to a document pipeline? That's what we do. Talk to Spiritus Agentic Solutions.