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
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!"}]}'