cURL
curl --request GET \ --url https://vaeroapi.com/v1/fine_tuning/jobs \ --header 'Authorization: Bearer <token>'
{ "object": "list", "data": [ { "object": "fine_tuning.job", "id": "ftjob-abc123", "style_model": "vaero-1", "base_model": "gpt-4o", "created_at": 1721764800, "fine_tuned_model": null, "organization_id": "org-123", "status": "queued", "training_files": [ "file-abc123", "file-abc124" ] } ] }
Lists your organization’s fine-tuning jobs.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
A list of fine-tuning job objects.
Type of the response, which will always be 'list'.
"list"
Show child attributes
The type of the object, always 'fine_tuning.job'.
"fine_tuning.job"
Auto-assigned UUID of the fine-tuning job.
"ftjob-abc123"
The model being fine-tuned.
"vaero-1"
The name of the base model whose output is to be styled.
"gpt-4o"
Unix timestamp for when the job was created.
1721764800
The name of the fine-tuned model.
null
ID of the organization associated with the job.
"org-123"
Current status of the job.
"queued"
Array of file IDs used for training.
["file-abc123", "file-abc124"]