Nebius AI Studio

Trial verified 2026-07-30 · 0d ago card requiredno phonecommercial OKOpenAI-compatible

Cheap open-model inference after a $1 trial

What's free

$1 trial credit, valid for 30 days

Rate limits

Various open-weight models

The catch

Product renamed to "Nebius Token Factory"; a bank card is required to set up billing

TypeTrial credit
Free typetrial-credit
Expires30 days
Modalitiestext
OpenAI base URLhttps://api.tokenfactory.nebius.com/v1

Quickstart — chat completions

from openai import OpenAI

client = OpenAI(base_url="https://api.tokenfactory.nebius.com/v1", api_key="<YOUR_FREE_API_KEY>")
resp = client.chat.completions.create(
    model="<a-free-model>",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)

…or with curl:

curl https://api.tokenfactory.nebius.com/v1/chat/completions \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"<a-free-model>","messages":[{"role":"user","content":"Hello!"}]}'

Appears in

← All providers