Skip to main content
GET
/
api
/
runs
/
files
Get files and artifacts from a run
curl --request GET \
  --url https://pluto-api.trainy.ai/api/runs/files \
  --header 'Authorization: Bearer <token>'
{
  "files": [
    {
      "fileName": "<string>",
      "fileType": "<string>",
      "fileSize": 123,
      "logName": "<string>",
      "logGroup": "<string>",
      "time": "<string>",
      "step": 123,
      "url": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key obtained from the mlop dashboard

Query Parameters

runId
number | null

Numeric run ID

projectName
string
required

Project name

logName
string

Filter by log name

logGroup
string

Filter by log group

Response

200 - application/json

Files with presigned URLs

files
object[]
required