Skip to main content
GET
/
api
/
v1
/
runs
/
{id}
/
eval-results
List run eval results
curl --request GET \
  --url https://studio.eigenpal.com/api/v1/runs/{id}/eval-results \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "<string>",
      "runId": "<string>",
      "automationId": "<string>",
      "evaluatorName": "<string>",
      "evaluatorType": "<string>",
      "score": 123,
      "passed": true,
      "label": "<string>",
      "weight": 123,
      "passThreshold": 123,
      "description": "<string>",
      "details": null,
      "error": "<string>",
      "createdAt": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key issued from Settings → API Keys. Pass as Authorization: Bearer <key>.

Path Parameters

id
string
required

Response

Eval results

results
object[]
required