---
title: "Get a run's rubric scorecard"
method: GET
path: "/projects/{projectId}/journey-runs/{runId}/scorecard"
tags: ["Swarm insights"]
---

# Get a run's rubric scorecard

`GET /projects/{projectId}/journey-runs/{runId}/scorecard`

The deterministic rubric result for one run. No model, no spend.

Divide by `sessionsGraded`, never `sessionsTotal`, and keep `failedGradingCount` separate from `failCount` — a crashed judge is not a regression.

## Response `200`

The scorecard.

- RunScorecard — Deterministic rubric result for one run. NO MODEL IS INVOLVED and nothing is spent — reach for this before the model-generated wave insights, which usually is not the question you actually have.
  - `runId` string, required
  - `criteria` ScorecardCriterion[], required — EVERY criterion the run's rubric declared, in snapshot order — including ones nothing was graded against. An absent row would be indistinguishable from a criterion that was never configured.
    - `id` string, required
    - `label` string, nullable, required
    - `kind` string, required
    - `passCount` integer, required
    - `failCount` integer, required
    - `pendingCount` integer, required — Claimed for grading and unfinished — includes crashed runners.
    - `failedGradingCount` integer, required — Sessions whose GRADING broke. Deliberately separate from `failCount`: folding them together makes a crashed judge look like a regression.
  - `sessionsTotal` integer, required
  - `sessionsGraded` integer, required — The DENOMINATOR for any rate you compute. Never divide by `sessionsTotal` — 3 failures of 4 graded sessions out of 40 attempted is not 7.5%.

## Other responses

- `401` — Missing, invalid, revoked, or orphaned key (`UNAUTHORIZED`) — or the **target MCP server** needs an OAuth grant (`OAUTH_REQUIRED`), which is a property of the server, not your key.
- `403` — Key is valid but not allowed to do this.
- `404` — Unknown project, server, or resource.
- `429` — Per-key rate limit exceeded (60 requests/minute sustained, bursts up to 10). Honor `Retry-After` and back off with jitter.
- `500` — Something failed on MCPJam's side.

---

[API](https://skmtc.net/mcpjam/apis/mcpjam-api.md) · [All operations](https://skmtc.net/mcpjam/apis/mcpjam-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mcpjam/mcpjam-api/revisions/5aaf216f28b0/schema)
