it's free*.ai

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 URLhttps://api.studio.nebius.com/v1
Env varNEBIUS_API_KEY
Rate limit$1 trial for 30 days

Code examples

npm install openai
import 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)

Worth knowing

Models you get for free1