GET
/
fine_tuning
/
jobs
curl --request GET \
  --url https://api.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"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

A list of fine-tuning job objects.

The response is of type object.