Get statistics for a run's metrics
curl --request GET \
--url https://pluto-api.trainy.ai/api/runs/statistics \
--header 'Authorization: Bearer <token>'{
"runId": 123,
"runName": "<string>",
"projectName": "<string>",
"url": "<string>",
"metrics": [
{
"logName": "<string>",
"logGroup": "<string>",
"count": 123,
"min": 123,
"max": 123,
"mean": 123,
"stddev": 123,
"last": {
"step": 123,
"value": 123
}
}
]
}Runs
Get statistics for a run's metrics
Returns per-metric aggregates (count, min, max, mean, stddev, last) read from the pre-computed summaries table. Raw, no editorializing β interpretation is the callerβs job.
GET
/
api
/
runs
/
statistics
Get statistics for a run's metrics
curl --request GET \
--url https://pluto-api.trainy.ai/api/runs/statistics \
--header 'Authorization: Bearer <token>'{
"runId": 123,
"runName": "<string>",
"projectName": "<string>",
"url": "<string>",
"metrics": [
{
"logName": "<string>",
"logGroup": "<string>",
"count": 123,
"min": 123,
"max": 123,
"mean": 123,
"stddev": 123,
"last": {
"step": 123,
"value": 123
}
}
]
}Authorizations
API key obtained from the mlop dashboard
Query Parameters
Numeric run ID
Project name
Filter by specific metric name (e.g., train/loss)
Filter by metric group (e.g., train)
Was this page helpful?
βI