GET
/
fine-tunes
/
{id}
/
checkpoints
List checkpoints
curl --request GET \
  --url https://api.together.xyz/v1/fine-tunes/{id}/checkpoints \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "step": 123,
      "created_at": "<string>",
      "path": "<string>",
      "checkpoint_type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
default:default
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json

List of fine-tune checkpoints

data
object[]
required