Get info about a fine-tuning job by its ID.
curl --request GET \ --url https://api.vaeroapi.com/v1/fine_tuning/jobs/{fine_tuning_job_id} \ --header 'Authorization: Bearer <token>'
{ "object": "fine_tuning.job", "id": "ftjob-abc123", "model": "llama-3.1-70b", "base_model": "gpt-4o", "created_at": 1721764800, "fine_tuned_model": "ftm:llama-3.1-70b:custom-model-name:0b5ace7e-ffb2-43cf-8a4d-0af17bc2b1d1", "organization_id": "org-123", "status": "succeeded", "training_files": [ "file-abc123", "file-abc124" ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the fine-tuning job.
The response is of type object.
object