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
nemotron-3-super-120b-a12b:free
NVIDIA
nemotron-3-super-120b-a12b:freeNVIDIA Nemotron 3 Super is a 120B-parameter open hybrid MoE model, activating just 12B parameters for maximum compute efficiency and accuracy in complex multi-agent applications.
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…
Quick start
Full documentationThe API is OpenAI-compatible — point the base URL here and pass the model id.
curl https://api.lulutokens.ai/v1/chat/completions \ -H "Authorization: Bearer $LULU_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "nemotron-3-super-120b-a12b:free", "messages": [{"role": "user", "content": "Hello"}] }'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-super-120b-a12b:free", messages=[{"role": "user", "content": "Hello"}],)