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.
The response is of type object.
object