LuluTokens
All models

Free endpoint — do not send confidential or personal data

Requests to this model are logged by NVIDIA for security and to improve their products. Those logs are not tied to your identity, but they are outside our control: using this endpoint means accepting NVIDIA's trial terms as well as ours. Privacy Policy

Nvidia

nemotron-3-ultra-550b-a55b:free

NVIDIA

nemotron-3-ultra-550b-a55b:free

NVIDIA Nemotron 3 Ultra is an open frontier-reasoning and orchestration model from NVIDIA, with 55B active parameters out of 550B total (MoE).

Context 1MToolsReasoning

Pricing

Input

S$0.00/M

Output

S$0.00/M

Cache read

Reusing a prompt already cached upstream

Not offered

Cache write

Storing a prompt for later reuse

Not offered

Struck-through figures are the vendor's published list price.

Performance

Loading throughput, latency, and success rate…

The API is OpenAI-compatible — point the base URL here and pass the model id.

cURL
curl https://api.lulutokens.ai/v1/chat/completions \  -H "Authorization: Bearer $LULU_API_KEY" \  -H "Content-Type: application/json" \  -d '{    "model": "nemotron-3-ultra-550b-a55b:free",    "messages": [{"role": "user", "content": "Hello"}]  }'
Python
from openai import OpenAIclient = OpenAI(base_url="https://api.lulutokens.ai/v1", api_key="LULU_API_KEY")response = client.chat.completions.create(    model="nemotron-3-ultra-550b-a55b:free",    messages=[{"role": "user", "content": "Hello"}],)
Endpoints:openai