Query console logs from a run
curl --request GET \
--url https://pluto-api.trainy.ai/api/runs/logs \
--header 'Authorization: Bearer <token>'{
"logs": [
{
"time": "<string>",
"logType": "<string>",
"lineNumber": 123,
"message": "<string>",
"step": 123
}
],
"total": 123
}Runs
Query console logs from a run
Returns console logs (stdout/stderr) from ClickHouse. Supports filtering by log type and pagination.
GET
/
api
/
runs
/
logs
Query console logs from a run
curl --request GET \
--url https://pluto-api.trainy.ai/api/runs/logs \
--header 'Authorization: Bearer <token>'{
"logs": [
{
"time": "<string>",
"logType": "<string>",
"lineNumber": 123,
"message": "<string>",
"step": 123
}
],
"total": 123
}Authorizations
API key obtained from the mlop dashboard
Query Parameters
Numeric run ID
Project name
Filter by log type
Available options:
INFO, ERROR, WARNING, DEBUG, PRINT Maximum lines to return
Required range:
1 <= x <= 10000Number of lines to skip
Required range:
x >= 0Was this page helpful?
⌘I