Providers
Create a free accountBrowse all models
NVIDIA API
NVIDIA’s Nemotron models through one unified API key. Open, capable models for reasoning and agents at pay-as-you-go prices.
1 model1 free at $0OpenAI- & Anthropic-compatiblePay-as-you-go
| Model | Tier | Context | Price in / out (1M) | |
|---|---|---|---|---|
| Nemotron 3 Super | Free | — | $1.30 / $1.30 | View |
Call NVIDIA in three lines
Same code as the OpenAI SDK — change the base URL and key, pick a model id:
from openai import OpenAI
client = OpenAI(
base_url="https://api.airforce/v1",
api_key="YOUR_KEY",
)
resp = client.chat.completions.create(
model="nemotron-3-super",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Frequently asked questions
- How do I use NVIDIA models through Api.Airforce?
- Point any OpenAI-compatible client at https://api.airforce/v1 and set the model id (for example "nemotron-3-super"). Your existing OpenAI SDK works unchanged — you only swap the base URL and API key. The same key also speaks the Anthropic Messages API.
- Are any NVIDIA models free?
- Yes — 1 of the 1 NVIDIA model is on the free tier and callable at $0 (for example Nemotron 3 Super). A free account needs no credit card; the remaining models are pay-as-you-go.
- How much do NVIDIA models cost on Api.Airforce?
- Billing is pay-as-you-go per token, at rates that sit well below the official APIs. The exact per-model input and output prices are listed in the table above and update automatically as upstream prices change.
- Which NVIDIA models are available?
- Currently 1 NVIDIA model, including Nemotron 3 Super. The catalog is refreshed as new models launch, so the list above is always current.