PrompticPromptic
OpenapiComponentsComponentidEvaluationsEvaluationidJudge results

List judge results for an evaluation

Returns the canonical per-(target × judge) rows produced by an evaluation. Each row carries the judge identity (`judgeKey`, `judgeName`, `backend`), the concrete target it scored (one of `datasetItemId`, `traceDbId`, `annotationId`, `runId`), the verdict (`score`, `rating`, `rationale`, `evidence`, `analysisPayload`), and the immutable `judgeSnapshot` used to produce it. Re-runs of the same `(evaluation, target, judgeKey)` are versioned via `version`.

GET
/components/{componentId}/evaluations/{evaluationId}/judge-results

Returns the canonical per-(target × judge) rows produced by an evaluation. Each row carries the judge identity (judgeKey, judgeName, backend), the concrete target it scored (one of datasetItemId, traceDbId, annotationId, runId), the verdict (score, rating, rationale, evidence, analysisPayload), and the immutable judgeSnapshot used to produce it. Re-runs of the same (evaluation, target, judgeKey) are versioned via version.

Authorization

BearerApiKey
AuthorizationBearer <token>

API key from AI Application settings

In: header

Path Parameters

componentId*string
Formatuuid
evaluationId*string
Formatuuid

Response Body

application/json

application/json

curl -X GET "https://loading/api/v1/components/497f6eca-6276-4993-bfeb-53cbbbba6f08/evaluations/497f6eca-6276-4993-bfeb-53cbbbba6f08/judge-results"
{
  "rows": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "evaluationId": "d66407ee-dc03-4490-a11a-2e3396305dfb",
      "subject": "output",
      "backend": "deterministic",
      "judgeKey": "string",
      "judgeName": "string",
      "traceDbId": "bcc7281d-b925-42a7-8484-03f5a7b15e9f",
      "traceOtlpId": "string",
      "datasetItemId": 0,
      "annotationId": "88801ce0-d7fe-4339-afa4-cdb9248204d4",
      "runId": "78c33d18-170c-44d3-a227-b3194f134f73",
      "score": 0,
      "rating": "string",
      "rationale": "string",
      "evidence": null,
      "analysisPayload": null,
      "judgeSnapshot": {
        "property1": null,
        "property2": null
      },
      "version": 0,
      "createdAt": "string"
    }
  ]
}
{
  "error": "string"
}