Home / Models / Free NVIDIA API

Free NVIDIA API

NVIDIA NIM's recurring free tier (build.nvidia.com) — DeepSeek, Llama, Nemotron and Gemma at 40 RPM.

FreeLLMAPI is a free, open-source LLM API that routes across every provider with a real free tier. The NVIDIA models below are on the free tier of NVIDIA NIM — reachable through one OpenAI-compatible key, with automatic failover when a provider hits its rate limit.

Free NVIDIA models (20)

ModelContextFree limitsCapabilities
minimaxai/minimax-m3197K40 rpmtools
z-ai/glm-5.2200K40 rpmtools
nvidia/nemotron-3-ultra-550b-a55b1.0M40 rpmtools
openai/gpt-oss-120b131K40 rpmtools
nvidia/llama-3.3-nemotron-super-49b-v1.5131K40 rpmtools
thinkingmachines/inkling1.0M40 rpmtools, vision
google/diffusiongemma-26b-a4b-it262K40 rpmvision
openai/gpt-oss-20b131K40 rpmtools
stepfun-ai/step-3.7-flash66K40 rpmtools
poolside/laguna-xs-2.1262K40 rpmtools
meta/llama-3.1-70b-instruct131K40 rpmtools
meta/llama-3.3-70b-instruct131K40 rpmtools
meta/llama-3.2-90b-vision-instruct131K40 rpmtools, vision
google/gemma-4-31b-it262K40 rpm
nvidia/nemotron-3-nano-30b-a3b262K40 rpm
nvidia/nemotron-3-super-120b-a12b262K40 rpmtools
nvidia/nemotron-nano-12b-v2-vl128K40 rpmtools, vision
nvidia/nvidia-nemotron-nano-9b-v2131K40 rpmtools

How to use NVIDIA for free

  1. Install FreeLLMAPI — the open-source router (GitHub). It runs locally and keeps your keys on your machine.
  2. Add a free key for NVIDIA NIM on the Keys page — no credit card required.
  3. Point your OpenAI client at the local endpoint and pick a model:
from openai import OpenAI

# FreeLLMAPI runs locally; grab your unified key + endpoint on the Keys page.
client = OpenAI(base_url="http://localhost:3001/v1", api_key="freellmapi-...")

resp = client.chat.completions.create(
    model="meta/llama-3.1-70b-instruct",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)
Use every one of these through one key. FreeLLMAPI is an open-source, self-hosted router that puts all these free tiers behind a single OpenAI-compatible endpoint and fails over when one is rate-limited. Browse the catalog or go live.

Frequently asked questions

Is the NVIDIA API really free?

Yes — these NVIDIA models run on genuine provider free tiers (on the free tier of NVIDIA NIM). Inference costs nothing; you only add a free provider key.

Do I need a credit card?

No. The providers here offer free tiers that work without a card. You add the free key once and FreeLLMAPI routes to it.

How do I call NVIDIA through FreeLLMAPI?

Install the open-source router, add the provider's free key on the Keys page, then point any OpenAI SDK at your local endpoint — see the code sample above.

← Browse all 600+ free models · Best free LLM APIs 2026