v1

latestOpenAPI 3.1.0MIT2026-07-13174391.2 KB
Reflex

List training events

Return lifecycle events interleaved with the loss curve, oldest first. type is metrics for a loss point and message for a lifecycle line. Add ?stream=true for a live Server-Sent Events stream.

get/v1/fine_tuning/jobs/{job_id}/events

Path parameters

job_idstring required

Query parameters

stream'true'

Set true for a live SSE stream instead of a JSON list.

Response

The job's events.

objectstring
has_moreboolean

Example response

{
  "object": "list",
  "data": [
    {
      "id": "ftevent-1a2b3c",
      "object": "fine_tuning.job.event",
      "created_at": 1780107005,
      "level": "info",
      "message": "Step 5: train_loss 0.42",
      "type": "metrics",
      "data": {
        "epoch": 1,
        "step": 5,
        "train_loss": 0.42
      }
    }
  ]
}