Skip to main content
GET
/
api
/
runs
/
metric-names
List distinct metric names in a project
curl --request GET \
  --url https://pluto-api.trainy.ai/api/runs/metric-names \
  --header 'Authorization: Bearer <token>'
{
  "projectName": "<string>",
  "metricNames": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

API key obtained from the mlop dashboard

Query Parameters

projectName
string
required

Project name

Substring search to filter metric names (e.g., 'loss')

runIds
string

Comma-separated run IDs to scope the search (e.g., '1,2,5')

limit
number | null
default:500

Maximum number of metric names to return (default: 500)

Response

200 - application/json

List of distinct metric names

projectName
string
required
metricNames
string[]
required