List fine-tuning events
Get status updates for a fine-tuning job.
Path parameters
-
The ID of the fine-tuning job to get events for.
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"
}