List Fine-tuning Events

Supported Providers
  • OpenAI

Get status updates for a fine-tuning job.

get
Authorizations
Path parameters
fine_tuning_job_idstringRequired

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

Example: ft-AF1WoRqd3aJAHsqc9NY7iL8F
Query parameters
afterstringOptional

Identifier for the last event from the previous pagination request.

limitintegerOptional

Number of events to retrieve.

Default: 20
Responses
200
OK
application/json
get
curl https://api.portkey.ai/v1/fine_tuning/jobs/ftjob-abc123/events \
  -H "x-portkey-api-key: $PORTKEY_API_KEY" \
  -H "x-portkey-virtual-key: $PORTKEY_PROVIDER_VIRTUAL_KEY"
200

OK

{
  "data": [
    {
      "id": "text",
      "created_at": 1,
      "level": "info",
      "message": "text",
      "object": "fine_tuning.job.event"
    }
  ],
  "object": "list"
}

Last updated

Was this helpful?