List fine-tuning events

GET /fine_tuning/jobs/{fine_tuning_job_id}/events

Get status updates for a fine-tuning job.

Path parameters

Query parameters

  • after string

    Identifier for the last event from the previous pagination request.

  • limit integer

    Number of events to retrieve.

    Default value is 20.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • data array[object] Required

      Fine-tuning job event object

      Hide data attributes Show data attributes object
    • object string Required

      Value is list.

GET /fine_tuning/jobs/{fine_tuning_job_id}/events
curl \
 -X GET https://api.openai.com/v1/fine_tuning/jobs/ft-AF1WoRqd3aJAHsqc9NY7iL8F/events \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "id": "string",
      "created_at": 42,
      "level": "info",
      "message": "string",
      "object": "fine_tuning.job.event"
    }
  ],
  "object": "list"
}