cURL
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" ] }
Get info about a fine-tuning job by its ID.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the fine-tuning job.
A fine-tuning job object.
The response is of type object.
object