GET
/
v1
/
fine_tuning
/
jobs
/
{job_id}
Get fine-tuning job info
curl --request GET \
  --url https://api.studio.nebius.com/v1/fine_tuning/jobs/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "created_at": 123,
  "error": {
    "code": "<string>",
    "message": "<string>",
    "param": "<string>"
  },
  "finished_at": 123,
  "hyperparameters": {
    "batch_size": 8,
    "learning_rate": 0.00001,
    "n_epochs": 3,
    "warmup_ratio": 0,
    "weight_decay": 0,
    "lora": false,
    "lora_r": 8,
    "lora_alpha": 8,
    "lora_dropout": 0,
    "packing": true,
    "max_grad_norm": 1,
    "context_length": 8192
  },
  "integrations": [
    {
      "type": "<string>",
      "wandb": {
        "project": "<string>",
        "name": "<string>",
        "entity": "<string>",
        "tags": [
          "<string>"
        ]
      }
    }
  ],
  "model": "<string>",
  "object": "fine_tuning.job",
  "organization_id": "",
  "result_files": [],
  "seed": 0,
  "suffix": "<string>",
  "status": "validating_files",
  "trained_tokens": 123,
  "training_file": "<string>",
  "validation_file": "<string>",
  "estimated_finish": 123,
  "trained_steps": 123,
  "total_steps": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

job_id
string
required

Response

Successful Response

id
string
required
created_at
integer
required
hyperparameters
object
required
model
string
required
status
enum<string>
required
Available options:
validating_files,
queued,
running,
succeeded,
failed,
cancelled
training_file
string
required
error
object | null
finished_at
integer | null
integrations
Integrations · array
object
enum<string>
default:fine_tuning.job
Available options:
TitleConst
Objectfine_tuning.job
organization_id
string
default:""
result_files
string[]
seed
integer
default:0
suffix
string | null
Maximum length: 64
trained_tokens
integer | null
validation_file
string | null
estimated_finish
integer | null
trained_steps
integer | null
total_steps
integer | null