Skip to main content
GET
/
v0
/
models
List of custom models
curl --request GET \
  --url https://api.studio.nebius.com/v0/models \
  --header 'Authorization: Bearer <token>'
[
  {
    "type": "text2text",
    "name": "<string>",
    "status": "validating",
    "logo_url": "<string>",
    "huggingface_url": "<string>",
    "flavors": [
      {
        "model_id": "<string>",
        "alias_for": "<string>",
        "quantization": "int4",
        "model_type": "text2image",
        "model_name": "<string>",
        "model_description": "",
        "label": "<string>",
        "input_price_per_million_tokens": 123,
        "output_price_per_million_tokens": 123,
        "tokens_per_second": 123,
        "input_tps": 123,
        "limits": {
          "tokens_per_minute": 0,
          "requests_per_minute": 123,
          "burst_ratio": 1,
          "dynamic": {
            "enabled": true
          },
          "user_specific": {}
        },
        "max_model_len": 123,
        "owners": [
          "<string>"
        ],
        "supports_lora_adapters": true,
        "regions": [
          {
            "country_code": "<string>",
            "name": "<string>"
          }
        ],
        "ai_project_ids": [
          "<string>"
        ],
        "context_window_k": 123
      }
    ],
    "fine_tune": {
      "model_id": "<string>",
      "training_price_per_million_tokens": 123,
      "training_types": []
    },
    "vendor": "<string>",
    "tags": [
      "<string>"
    ],
    "use_cases": [
      "<string>"
    ],
    "context_window_k": 123,
    "size_b": 123,
    "quality": 123,
    "policy_url": "<string>",
    "license": {
      "url": "<string>",
      "type": "<string>",
      "name": "<string>"
    },
    "status_reason": "<string>",
    "checkpoint_id": "<string>",
    "job_id": "<string>",
    "file_id": "<string>",
    "url": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ai_project_id
string | null

Project ID where list models

Response

Successful Response

type
enum<string>
required
Available options:
TitleConst
Typetext2text
name
string
required
status
enum<string>
required

Enum representing the possible statuses of a model.

Available options:
validating,
active,
error,
deleted
flavors
VllmModelFlavor · object[]
required
vendor
string
required
tags
string[]
required
use_cases
string[]
required
context_window_k
integer
required
size_b
number
required
logo_url
string | null
huggingface_url
string | null
fine_tune
object | null
quality
number | null
policy_url
string | null
license
object | null
status_reason
string | null
checkpoint_id
string | null
job_id
string | null
file_id
string | null
url
string | null