GET
/
fine_tuning
/
jobs
/
{fine_tuning_job_id}
/
events
curl --request GET \
  --url https://api.openai.com/v1/fine_tuning/jobs/{fine_tuning_job_id}/events \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "object": "fine_tuning.job.event",
      "id": "<string>",
      "created_at": 123,
      "level": "info",
      "message": "<string>",
      "type": "message",
      "data": {}
    }
  ],
  "object": "list",
  "has_more": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

fine_tuning_job_id
string
required

The ID of the fine-tuning job to get events for.

Example:

"ft-AF1WoRqd3aJAHsqc9NY7iL8F"

Query Parameters

after
string

Identifier for the last event from the previous pagination request.

limit
integer
default:20

Number of events to retrieve.

Response

200 - application/json

OK

The response is of type object.