NEMOTRON 3 ULTRA · INDEPENDENTLY BENCHMARKED

The fastest Nemotron 3 Ultra.
Not by a little.

NVIDIA's frontier open-weights reasoning model — 550B parameters, served at 454 tokens per second. Artificial Analysis ranks us #1 for output speed among every API provider it benchmarks, 47% ahead of the runner-up, at roughly a third of its price.

THE NUMBERS

Independent measurements, not claims

Artificial Analysis verified us as the #1 Nemotron 3 Ultra provider at 454 tokens/sec, July 2026. Same methodology and same token counting for every provider, published in the open.

454 t/s
OUTPUT SPEED · #1 ON ARTIFICIAL ANALYSIS
+47%
FASTER THAN NEBIUS · THE #2 PROVIDER
$0.44
BLENDED PRICE PER 1M TOKENS
6.15 s
TIME TO FIRST ANSWER TOKEN
HEAD TO HEAD · #1 VS #2

Same model. Same prompt.
Watch the gap open.

Identical weights and an identical prompt, streamed side by side against Nebius — the #2 provider on the leaderboard. Blackbox answers sooner and streams 47% faster, so the same completion simply lands first. The readouts are the published Artificial Analysis figures.

Nemotron 3 Ultra · Nebius vs Blackbox
Output TPS0-31.9%
TTFA+55.4%
$ / 1M+172.7%
Output TPS0+46.9%
TTFA-35.7%
$ / 1M-63.3%
Nebius · #2
reasoning…
BLACKBOX AI · #1won
reasoning…
Side-by-side speed test: the identical prompt streamed through Nebius and through Blackbox, both serving NVIDIA Nemotron 3 Ultra. Blackbox streams 47 percent faster and finishes first.
THE LEADERBOARD

Every provider.
One clear #1.

Artificial Analysis continuously benchmarks every API provider that serves Nemotron 3 Ultra. Blackbox holds the top output speed, with one of the lowest prices on the board. Verify the numbers on Artificial Analysis.

nemotron 3 ultra · 6 providers[ LEADERBOARD ]

Output speed · ranked

t/s · TTFA · $ / 1M
#1BLACKBOX AI454.4$0.44
#2Nebius309.3$1.20
#3CoreWeave249.6$0.53
#4Together AI159.5$0.62
#5DeepInfra99.2$0.39
#6Lightning AI72.8$0.49
TTFA = time to first answer token · blended price per 1M tokensSource: Artificial Analysis · July 2026
THE ENGINE

Same weights as everyone else.
A very different engine.

Every provider on the leaderboard serves the same open weights. The gap comes from the serving stack.

01

Custom CUDA kernels

We generate tokens, we do not resell them. Direct access to the open weights lets us run the model on our own infrastructure, with kernels tuned for exactly this architecture.

02

FP4 on NVIDIA B300

Advanced quantization on latest-generation hardware. On the same bench, FP4 leads BF16 on every axis — with no measurable quality loss on evals.

03

Multi-token prediction

Nemotron ships a built-in MTP head. Our engine uses it for speculative decoding, and emits multiple tokens per forward pass instead of one.

04

End-to-end encrypted, zero retention

Speed without a trade-off. We provide end-to-end encryption and retain zero data — we process prompts and completions in memory and discard them after the response.

DROP-IN

Point your SDK at it.
Nothing else changes.

The Blackbox API is OpenAI-compatible. Swap the base URL and the key, set the model to blackboxai/nvidia/nemotron-3-ultra, and every token arrives 47% sooner. Streaming, function calling, and JSON mode work unchanged.

PYTHON · nemotron.py
from openai import OpenAI

client = OpenAI(
    base_url="https://enterprise.blackbox.ai/v1",
    api_key="YOUR_BLACKBOX_API_KEY",
)

stream = client.chat.completions.create(
    model="blackboxai/nvidia/nemotron-3-ultra",
    messages=[{"role": "user", "content": "Explain CUDA, step by step."}],
    stream=True,
)

for chunk in stream:
    print(chunk.choices[0].delta.content or "", end="")

Every token, 47% sooner.

Get a key, point your SDK at the endpoint, and measure it on your own prompts. The leaderboard is public — so is the gap.