GET
/
fine_tuning
/
jobs
/
{fine_tuning_job_id}
Retrieve fine-tuning job
curl --request GET \
  --url https://vaeroapi.com/v1/fine_tuning/jobs/{fine_tuning_job_id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "fine_tuning.job",
  "id": "ftjob-abc123",
  "style_model": "vaero-1",
  "base_model": "gpt-4o",
  "created_at": 1721764800,
  "fine_tuned_model": "ftm-custom-name-0b5ace7e-ffb2-43cf-8a4d-0af17bc2b1d1",
  "organization_id": "org-123",
  "status": "succeeded",
  "training_files": [
    "file-abc123",
    "file-abc124"
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

fine_tuning_job_id
string
required

The ID of the fine-tuning job.

Response

A fine-tuning job object.

object
string

The type of the object, always 'fine_tuning.job'.

Example:

"fine_tuning.job"

id
string

The ID of the fine-tuning job.

Example:

"ftjob-abc123"

style_model
string

The model being fine-tuned.

Example:

"vaero-1"

base_model
string

The name of the base model whose output is to be styled.

Example:

"gpt-4o"

created_at
integer

Unix timestamp for when the job was created.

Example:

1721764800

fine_tuned_model
string

The name of the fine-tuned model.

Example:

"ftm-custom-name-0b5ace7e-ffb2-43cf-8a4d-0af17bc2b1d1"

organization_id
string

The organization ID associated with this fine-tuning job.

Example:

"org-123"

status
string

The current status of the job.

Example:

"succeeded"

training_files
string[]

Array of file IDs used for training.

Example:
["file-abc123", "file-abc124"]