Skip to main content

Overview

Nebius Studio provides $1 in trial credits to new users, giving you access to their collection of open-source language models through their AI platform.

Trial Credits

$1 in free credits

Duration

No expiration specified

Available Models

Nebius offers access to various open-source models optimized for their infrastructure.
View the complete list of available models at studio.nebius.ai/models

Getting Started

1. Sign Up

Visit studio.nebius.com and create a free account to receive your $1 in trial credits.

2. Get Your API Key

Navigate to your account settings to generate an API key.

3. Make API Calls

import openai

client = openai.OpenAI(
    api_key="YOUR_NEBIUS_API_KEY",
    base_url="https://api.studio.nebius.ai/v1"
)

response = client.chat.completions.create(
    model="meta-llama/Meta-Llama-3.1-70B-Instruct",
    messages=[{
        "role": "user",
        "content": "What is the capital of France?"
    }]
)

print(response.choices[0].message.content)
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: process.env.NEBIUS_API_KEY,
  baseURL: 'https://api.studio.nebius.ai/v1'
});

const response = await client.chat.completions.create({
  model: 'meta-llama/Meta-Llama-3.1-70B-Instruct',
  messages: [{
    role: 'user',
    content: 'What is the capital of France?'
  }]
});

console.log(response.choices[0].message.content);
curl https://api.studio.nebius.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_NEBIUS_API_KEY" \
  -d '{
    "model": "meta-llama/Meta-Llama-3.1-70B-Instruct",
    "messages": [{
      "role": "user",
      "content": "What is the capital of France?"
    }]
  }'

API Compatibility

Nebius Studio uses an OpenAI-compatible API, making it easy to integrate with existing applications that use the OpenAI SDK.

Use Cases

  • Quick Testing: Evaluate open-source models for your use case
  • Development: Build and test AI applications before scaling
  • Model Comparison: Compare performance across different model architectures

Resources

Nebius Studio

Access the platform

Model Catalog

Browse available models
Make the most of your $1 credit by starting with smaller models for testing and prototyping.

Build docs developers (and LLMs) love