Skip to main content
GET
/
v0
/
models
/
{name}
Get a custom model by short name
curl --request GET \
  --url https://api.tokenfactory.nebius.com/v0/models/{name} \
  --header 'Authorization: Bearer <token>'
{
  "type": "text2text",
  "name": "<string>",
  "status": "validating",
  "flavors": [
    {
      "model_id": "<string>",
      "model_type": "text2image",
      "model_name": "<string>",
      "label": "<string>",
      "tags": [
        "<string>"
      ],
      "use_cases": [
        "<string>"
      ],
      "input_price_per_million_tokens": 123,
      "output_price_per_million_tokens": 123,
      "tokens_per_second": 123,
      "max_model_len": 123,
      "alias_for": "<string>",
      "quantization": "int4",
      "model_description": "",
      "input_tps": 123,
      "limits": {
        "requests_per_minute": 123,
        "tokens_per_minute": 0,
        "burst_ratio": 1,
        "dynamic": {
          "enabled": true
        },
        "user_specific": {},
        "rate_limit_enabled": true
      },
      "supports_lora_adapters": true,
      "regions": [
        {
          "country_code": "<string>",
          "name": "<string>"
        }
      ],
      "ai_project_ids": [
        "<string>"
      ],
      "context_window_k": 123
    }
  ],
  "vendor": "<string>",
  "tags": [
    "<string>"
  ],
  "use_cases": [
    "<string>"
  ],
  "context_window_k": 123,
  "size_b": 123,
  "description": "<string>",
  "logo_url": "<string>",
  "huggingface_url": "<string>",
  "fine_tune": {
    "model_id": "<string>",
    "training_price_per_million_tokens": 123,
    "training_types": []
  },
  "post_train": [
    {
      "type": "<string>",
      "price_per_context_length": {},
      "model_id": "<string>"
    }
  ],
  "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.

Path Parameters

name
string
required

Response

Successful Response

type
enum<string>
required
Available options:
text2text
Allowed value: "text2text"
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
description
string | null
logo_url
string | null
huggingface_url
string | null
fine_tune
ModelFineTuneSettings · object
post_train
PostTrainEntry · object[] | null
quality
number | null
policy_url
string | null
license
ModelLicense · object
status_reason
string | null
checkpoint_id
string | null
job_id
string | null
file_id
string | null
url
string | null