Nemotron 3 Ultra really is free and really is good. The free part runs out at 50 requests a day
The model is real and it is good. NVIDIA released it on 4 June 2026, it carries 550 billion parameters but only 55 billion of them fire on any given request, it takes a 1 million token context, and its license allows commercial use. On OpenRouter's free endpoint both input and output are zero dollars, and I verified that against the API one by one. Three things in the usual pitch do not hold up. First, "the biggest free model": it is not, Kimi K3 is five times larger and also open. Second, "even better than Claude": NVIDIA never says that, its own claim is about speed, and on independent measurements Claude leads on real world coding. Third, "completely free": the free tier gives 20 requests a minute and 50 a day, which a coding agent burns through in one afternoon. Below: the verified setup for both free routes, where this model genuinely does lead, the step in OpenCode's first run that walks you into a billing screen, and a backwards detail where the free endpoint offers a longer context than the paid one.
Ücretsiz APIClaude CodeGeliştirici Araçları
The model itself
NVIDIA released it on 4 June 2026. It uses a mixture of experts architecture: there are 550 billion parameters in total, but only 55 billion of them fire on any given request, not all of them. That is why it is fast for its size. The context window goes up to 1 million tokens. The license is OpenMDW 1.1 and it permits commercial use, which matters because most models labelled "open weight" do not.
What is extra below: the verified setup for both free routes, exactly where each one stops, the step in OpenCode's first run that walks you into handing over billing details, and why downloading the weights is not an option for very nearly anyone.
Not the biggest, the fastest. That is the distinction
Two sentences circulate about this model and both are measurable, so I checked them. The first is "the biggest free model to date". It is not. By Hugging Face's own figure, Nemotron 3 Ultra carries 560 billion parameters. Kimi K3, sitting in the same place, carries 2.78 trillion, roughly five times as many, and it is downloadable too. There are larger ones over at DeepSeek and Thinking Machines as well. Size is not where Nemotron holds a record.
The second is "even better than Claude". NVIDIA makes no such claim. The sentence on its own research page and in the abstract of its technical report is this: up to 6 times higher inference throughput compared to open models, at comparable accuracy. The models it compares against are GLM, Kimi and Qwen, all open. They publish no comparison against Claude or GPT, and the absence of that comparison is itself informative.
Who leads where
Nemotron 3 Ultra
speed, cost and access
Up to 6 times faster than open models in NVIDIA's measurement
Finishes the same task spending fewer tokens
Open weights, with a license that permits commercial use
A 1 million token context and a zero dollar endpoint
Claude
real world coding
On tests that fix bugs in real repositories, independent measurements put Claude ahead
The gap is not small, it sits around ten points
It carries context better through long, tangled tasks
In exchange it is closed, expensive and not downloadable
The right expectation: among open models you are getting one of the best on speed and efficiency, and getting it for nothing. You are not getting something that replaces Claude. That is not bad news, because accuracy was never this model's selling point. Finishing the same job in fewer tokens and less time pays off directly when your daily allowance on the free tier is counted.
Where free actually stops
There are two separate free routes and people conflate them. The first is OpenRouter's free endpoint: the model name ends in ":free" and both input and output really do cost zero. The second is NVIDIA's own API: you open an account, it asks for no card, and you take your key. Different setup, different limits.
Four routes, four limits
Route
Cost
Limit
OpenRouter free endpoint
0 dollars
20 a minute, 50 a day
OpenRouter free, with a one time 10 dollars on the account
0 dollars, the 10 stays put
20 a minute, 1,000 a day
OpenRouter paid endpoint
0.625 dollars per 1M in, 3.125 per 1M out
until your credit runs out
NVIDIA's own API
0 dollars, asks for no card
40 a minute, a credit pool
The second row is the most useful thing on this page. If you load 10 dollars of credit on OpenRouter once, your free tier's daily allowance goes from 50 to 1,000, and that 10 dollars stays on your account because free requests do not spend it. So a one time 10 dollars gets you twenty times more use out of this model.
50 requests is less than you think
In a chat window 50 requests feels like plenty. In a coding agent it is not. For a single task the agent reads files, runs commands, sees an error and tries again, and each of those is its own request. A medium task comfortably burns 20 to 40. So 50 a day means one or two tasks a day in practice.
Open source does not mean you can download it
The weights genuinely are public, you can start downloading them right now. Downloading is not the problem, running them is. NVIDIA's published version comes to roughly 1.1 TB, and the minimum hardware on the model card is 8 H200s or 16 H100s. Compressed versions bring that down, but not far enough.
Even compressed
Version
Memory needed
What that means
As published
around 1.1 TB
8 H200s or 16 H100s
8 bit
around 600 GB
server class machine
4 bit
around 300 GB
still not a home machine
3 bit
around 256 GB
the best balance of size and quality
The conclusion: if you are going to use this model, you are going to use it over the cloud. Both setups below do exactly that. The download route makes sense only if you have servers sitting around.
Route one: OpenCode and OpenRouter
OpenCode is an open source coding agent that runs in your terminal. It is MIT licensed and you pick the model; the tool itself does not care which one you use. Installing it is a single command.
Installing OpenCode
# macOS and Linux
curl -fsSL https://opencode.ai/install | bash
# Windows
scoop install opencode
# or anywhere, if you have Node
npm install -g opencode-ai
From here on
1
Get your OpenRouter key
Open an account, create a key. It starts with sk-or-v1
2
Run opencode in your project folder
The tool opens and you give commands from there
3
Run the /connect command
Pick OpenRouter from the list and paste the key
4
Pick the model
From the list with /models, or by writing it into the config
This is the step where you fall out of free
When you run /connect, OpenCode Zen sits at the top of the list and it is the option the tool itself suggests. Zen is not free: it asks for card details and bills you per request. You do not have to use it, and the tool's own docs say it is optional. To stay free, scroll down the list and pick OpenRouter.
If you cannot see the free version of Nemotron 3 Ultra in the model list, or you would rather not pick it every time you start, you can pin it in the config file. That file is either opencode.json at your project root or .config/opencode/opencode.json in your user folder; the second one applies to every project.
The ":free" on the end is not decoration, it is precisely what separates the paid endpoint from the free one. Delete it and the model still works, but now it spends your credit.
You can cut OpenRouter out entirely and connect straight to NVIDIA. Opening an account is free and asks for no card, and your key starts with nvapi. OpenCode does not know this provider out of the box, so you introduce it yourself using the OpenAI compatible provider pattern.
The name "nim" here is yours to choose. If you name the provider "nvidia", the model address turns into something like nvidia/nvidia/nemotron-3-ultra-550b-a55b with nvidia written twice, which gets confusing, so a short name is easier. We read the key from an environment variable instead of writing it into the file; whatever you named that variable is what goes inside the braces.
This route is not for production
NVIDIA states plainly in its own docs that free access is for development, testing and research. There is a 40 requests per minute limit and no button you can press to raise it yourself. Use it for your own development, do not put it behind a product that ships to customers.
✓560 billion parameters. Kimi K3 is five times larger at 2.78 trillion, and also open
✗Even better than Claude
✓NVIDIA does not claim this. Its own claim is up to 6 times the speed of open models, at comparable accuracy
✗Completely free, use as much as you like
✓The free endpoint gives 50 a day. A one time 10 dollars takes it to 1,000
✗Open source, download it and run it on your own machine
✓Even the smallest usable compression wants 256 GB of memory
✗Install OpenCode and follow the screen
✓The first connect screen leads to the paid service. Pick OpenRouter from the list
✗The paid version is better in every way
✓The free endpoint offers a 1 million token context, the paid one 262 thousand
✗This replaces Claude Code
✓What is free is the model, not the agent. OpenCode is a different tool and your habits do not carry over one to one
The last one deserves a pause, because most of these videos start right there. The thing that became free is the model. What you are swapping is the agent, the layer that talks to you in the terminal and touches your files. There is another route that solves the same problem while keeping the Claude Code interface, and it sits at number 110 in this archive. Which one you pick comes down to this: do you want to keep the interface, or the model.
01
OpenCode
An open source coding agent that runs in your terminal. You pick the model and the tool stays out of the way. MIT licensed, 206,824 stars, updated today.
20 requests a minute, 50 a day. Load 10 dollars of credit once and the daily allowance goes to 1,000, while that 10 dollars stays put because free requests do not spend it.
The route that cuts out the middle service and connects straight to NVIDIA. The account is free, it asks for no card, and the key starts with nvapi. Being OpenAI compatible, changing the address is enough.
There is a 40 requests per minute limit, and NVIDIA states plainly that free access is for development, testing and research. Do not put it behind a product that ships.
If you want to download and run it on your own hardware, the weights are open and the license permits commercial use. Compressed versions live somewhere separate.
The published version is around 1.1 TB and the minimum hardware on the model card is 8 H200s or 16 H100s. Even compressed, the 3 bit version needs around 256 GB of memory.
Installing these tools on your own is one thing; actually building with them is another. The community has people using these daily and people building systems from scratch.
DOA: Yapay Zeka ve Otomasyon
If you want a system that actually runs in your business, let's talk for 10 minutes; I'll look at what you're trying to build and tell you which path fits. Free, and not a sales pitch.