Sample - OpenAI API
GET/fine_tuning/jobs/{fine_tuning_job_id}/events

List fine-tuning job events

Lists status events for a fine-tuning job. Use after and limit to retrieve subsequent event pages and review the job's chronological progress messages. Each event includes its identifier, timestamp, severity level, message, and event type when available.

  • RetriesRetries up to 2×, 500ms backoff, 30s timeout.

3 parameters
fine_tuning_job_idstringrequired
The identifier of the fine-tuning job whose events to retrieve.
afterstringoptional
The identifier of the last event from the previous pagination request.
limitintegeroptional
The number of events to retrieve. Defaults to 20 when omitted.
Default:20

1 status code
200Returns a list object containing fine-tuning event records, an object type of `list`, and a `has_more` flag indicating whether more events are available.
dataarray<object>required
objectstringrequired
Allowed:list
has_morebooleanrequired

Error handling

fine_tuning_job_id must identify the job whose events you want to retrieve. limit controls the number of events retrieved and defaults to 20 when omitted; use after with the last event identifier to continue pagination.