Endpoint
GET/v1/models/{id}/evaluations
Authentication: Authorization: Bearer $ARIA_PIN_KEY
Path parameters
string
required
The model ID whose evaluations you want to list.
Response
array
List of evaluation objects.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve all evaluation runs for a specific model, including status and risk summaries.
/v1/models/{id}/evaluations
Authentication: Authorization: Bearer $ARIA_PIN_KEY
Show child attributes
curl http://<pin-host>:8001/v1/models/mod_123/evaluations \
-H "Authorization: Bearer $ARIA_PIN_KEY"
{
"items": [
{
"eval_id": "ev_1712345678901234567",
"status": "queued",
"risk": "ok",
"error": "",
"created_at": "2025-06-01T12:00:00Z"
}
]
}
Was this page helpful?