curl --request GET \
--url https://api.pandaprobe.com/evaluations/trace-runs/template \
--header 'Authorization: Bearer <token>'{
"metric": {
"name": "<string>",
"description": "<string>",
"category": "<string>",
"default_threshold": 123,
"prompt_preview": [
{
"stage": "<string>",
"prompt": "<string>"
}
]
},
"filters": {
"date_from": "<string>",
"date_to": "<string>",
"status": "PENDING",
"session_id": "<string>",
"user_id": "<string>",
"tags": [
"<string>"
],
"name": "<string>"
},
"sampling_rate": 123,
"model": "<string>"
}Return a pre-filled eval run template for a single metric.
Auth: Bearer + X-Project-ID | X-API-Key + X-Project-Name
curl --request GET \
--url https://api.pandaprobe.com/evaluations/trace-runs/template \
--header 'Authorization: Bearer <token>'{
"metric": {
"name": "<string>",
"description": "<string>",
"category": "<string>",
"default_threshold": 123,
"prompt_preview": [
{
"stage": "<string>",
"prompt": "<string>"
}
]
},
"filters": {
"date_from": "<string>",
"date_to": "<string>",
"status": "PENDING",
"session_id": "<string>",
"user_id": "<string>",
"tags": [
"<string>"
],
"name": "<string>"
},
"sampling_rate": 123,
"model": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Metric name to build the template for
Successful Response
Pre-filled template the dashboard renders as an editable form.
Full metric info including threshold and prompt previews.
Show child attributes
Trace filters for a filtered eval run.
These mirror the GET /traces query parameters so the frontend can reuse the same filter UI components.
Show child attributes