Get Session Score History
curl --request GET \
--url https://api.pandaprobe.com/evaluations/analytics/session-scores/history/{session_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.pandaprobe.com/evaluations/analytics/session-scores/history/{session_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.pandaprobe.com/evaluations/analytics/session-scores/history/{session_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.pandaprobe.com/evaluations/analytics/session-scores/history/{session_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[
{
"metric_name": "<string>",
"score": 123,
"eval_run_id": "<string>",
"created_at": "<string>",
"status": "<string>"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Session Scores
Get Session Score History
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
GET
/
evaluations
/
analytics
/
session-scores
/
history
/
{session_id}
Get Session Score History
curl --request GET \
--url https://api.pandaprobe.com/evaluations/analytics/session-scores/history/{session_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.pandaprobe.com/evaluations/analytics/session-scores/history/{session_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.pandaprobe.com/evaluations/analytics/session-scores/history/{session_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.pandaprobe.com/evaluations/analytics/session-scores/history/{session_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}[
{
"metric_name": "<string>",
"score": 123,
"eval_run_id": "<string>",
"created_at": "<string>",
"status": "<string>"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
HTTPBearerApiKeyProjectIDProjectName
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
Filter to a single metric name.
Max data points to return.
Required range:
1 <= x <= 200
