curl --request GET \
--url https://api.pandaprobe.com/evaluations/analytics/session-scores/comparison \
--header 'Authorization: Bearer <token>'{
"items": [
{
"session_id": "<string>",
"score": 123,
"evaluated_at": "<string>",
"eval_run_id": "<string>"
}
],
"total": 123,
"limit": 123,
"offset": 123
}Leaderboard: latest score per session for a metric, sorted by value.
Shows each session’s most recent score for the requested metric,
ranked by value. Use sort_order=asc to surface the worst-performing
sessions first (e.g. “Bottom 10 by agent_reliability”).
Auth: Bearer + X-Project-ID | X-API-Key + X-Project-Name
curl --request GET \
--url https://api.pandaprobe.com/evaluations/analytics/session-scores/comparison \
--header 'Authorization: Bearer <token>'{
"items": [
{
"session_id": "<string>",
"score": 123,
"evaluated_at": "<string>",
"eval_run_id": "<string>"
}
],
"total": 123,
"limit": 123,
"offset": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Metric name to rank sessions by.
Sort order: 'asc' (worst first, good for finding problems) or 'desc' (best first).
Page size.
1 <= x <= 100Number of items to skip.
x >= 0