---
title: "List run evaluator scores"
method: GET
path: "/api/v1/runs/{id}/scores"
tags: ["Evaluation"]
---

# List run evaluator scores

`GET /api/v1/runs/{id}/scores`

List automated evaluator results for one run. Use `score` for evaluator output and run reviews for human verdicts.

## Path parameters

- `id` string, required — Run id.

## Response `200`

Per-evaluator scores for the run

- RunScoresResponse — Automated evaluator results attached to a run.
  - `scores` EvalResult[], required — Automated evaluator scores for the run. These are separate from human review verdicts.
    - `id` string, required — Evaluator result id.
    - `runId` string, required — Run this score belongs to.
    - `automationId` string, nullable, required — Automation this score belongs to.
    - `evaluatorName` string, required — Evaluator name from configuration.
    - `evaluatorType` string, required — Evaluator implementation type.
    - `score` number, nullable, required — Automated evaluator score. Do not confuse this with a human review verdict.
    - `passed` boolean, nullable, required — Whether this evaluator passed.
    - `label` string, nullable, required — Optional evaluator label.
    - `weight` number, nullable, required — Weight used in aggregate scoring.
    - `passThreshold` number, nullable, required — Score threshold required for this evaluator to pass.
    - `description` string, nullable, required — Evaluator description.
    - `details` unknown, required
    - `error` string, nullable, required — Evaluator error, when scoring failed.
    - `createdAt` union, required
      - string
      - string

## Other responses

- `400` — Validation error. Request shape did not match the spec.
- `401` — Missing or invalid API key
- `403` — API key lacks required scope
- `404` — Resource not found
- `413` — Payload too large. Upload exceeded the per-request size cap.
- `429` — Rate limit exceeded
- `500` — Internal server error

---

[API](https://skmtc.dev/eigenpal/apis/eigenpal-api.md) · [All operations](https://skmtc.dev/eigenpal/apis/eigenpal-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/eigenpal/eigenpal-api/revisions/dddcddf1975c/schema)
