Nebius AI Studio
European GPU cloud with a $1 trial credit. Llama 3.3 70B is the current featured id.
Nebius Token Factory (still billed as AI Studio in older consoles) is a European inference studio: dozens of open models, dual “fast” vs “base” prices, and $1 of trial credit for 30 days. Claiming it needs a payment method.
Not a standing free tier — when the dollar is gone you top up. Llama 3.3 70B is the example id in their current OpenAPI. OpenAI-compatible at api.studio.nebius.com/v1.
- Free models
- 1
- Max context
- 128K
- Free tier
- $1 trial for 30 days
- Requirement
- Credit card required
Endpoint
Base URL
https://api.studio.nebius.com/v1Env var
NEBIUS_API_KEYRate limit
$1 trial for 30 days- OpenAI-compatible
- text
Code examples
npm install openaiimport OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://api.studio.nebius.com/v1',
apiKey: process.env.NEBIUS_API_KEY
})
const response = await client.chat.completions.create({
model: 'meta-llama/Llama-3.3-70B-Instruct',
messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})
console.log(response.choices[0].message.content)pip install openaiimport os
from openai import OpenAI
client = OpenAI(
base_url="https://api.studio.nebius.com/v1",
api_key=os.environ["NEBIUS_API_KEY"],
)
response = client.chat.completions.create(
model="meta-llama/Llama-3.3-70B-Instruct",
messages=[{"role": "user", "content": "Explain closures in one paragraph."}],
)
print(response.choices[0].message.content)curl https://api.studio.nebius.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $NEBIUS_API_KEY" \
-d '{
"model": "meta-llama/Llama-3.3-70B-Instruct",
"messages": [{"role": "user", "content": "Explain closures in one paragraph."}]
}'Worth knowing
- The dollar of trial credit needs a payment method. After 30 days you top up.
Models you get for free1
- Llama 3.3 70B
meta-llama/Llama-3.3-70B-Instruct