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,
          "user_specific": {}
        },
        "max_model_len": 123,
        "owners": [
          "<string>"
        ],
        "supports_lora_adapters": true,
        "regions": [
          {
            "country_code": "<string>",
            "name": "<string>"
          }
        ],
        "ai_project_id": "<string>"
      }
    ],
    "fine_tune": {
      "model_id": "<string>",
      "training_price_per_million_tokens": 123
    },
    "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

The response is of type CustomModelInfoResponse · object[].