curl --request GET \
--url https://api.baseten.co/v1/training_projects/{training_project_id}/jobs/{training_job_id}/checkpoint_files \
--header "Authorization: Api-Key $BASETEN_API_KEY"
{
  "presigned_urls": [
    {
      "url": "<string>",
      "relative_file_name": "<string>"
    }
  ],
  "next_page_token": 123,
  "total_count": 123
}

Authorizations

Authorization
string
header
required

You must specify the scheme 'Api-Key' in the Authorization header. For example, Authorization: Api-Key <Your_Api_Key>

Path Parameters

training_project_id
string
required
training_job_id
string
required

Response

200 - application/json

A response to fetch presigned URLs for checkpoint files of a training job.