curl --request GET \
--url https://api.pandaprobe.com/evaluations/analytics/session-scores/history/{session_id} \
--header 'Authorization: Bearer <token>'[
{
"metric_name": "<string>",
"score": 123,
"eval_run_id": "<string>",
"created_at": "<string>",
"status": "<string>"
}
]Score evolution for a specific session across re-evaluations over time.
Returns one row per (metric, eval_run) ordered chronologically, showing how the session’s scores changed as new traces arrived and the session was re-evaluated. Useful for “session health over time” dashboard charts.
Auth: Bearer + X-Project-ID | X-API-Key + X-Project-Name
curl --request GET \
--url https://api.pandaprobe.com/evaluations/analytics/session-scores/history/{session_id} \
--header 'Authorization: Bearer <token>'[
{
"metric_name": "<string>",
"score": 123,
"eval_run_id": "<string>",
"created_at": "<string>",
"status": "<string>"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter to a single metric name.
Max data points to return.
1 <= x <= 200