GET
/
fine-tunes
/
{id}
/
events
List job events
curl --request GET \
  --url https://api.together.xyz/v1/fine-tunes/{id}/events \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "object": "fine-tune-event",
      "created_at": "<string>",
      "level": "<any>",
      "message": "<string>",
      "type": "job_pending",
      "param_count": 123,
      "token_count": 123,
      "total_steps": 123,
      "wandb_url": "<string>",
      "step": 123,
      "checkpoint_path": "<string>",
      "model_path": "<string>",
      "training_offset": 123,
      "hash": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
default:default
required

Path Parameters

id
string
required

Response

200 - application/json

List of fine-tune events

The response is of type object.