GET
/
v1
/
call
/
{id}
/
evaluation-run
curl --request GET \
  --url https://api.roark.ai/v1/call/{id}/evaluation-run \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "evaluator": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "weight": 123
      },
      "score": "<string>",
      "summary": "<string>",
      "metrics": [
        {
          "name": "<string>",
          "valueType": "<string>",
          "numericValue": 123,
          "booleanValue": true,
          "textValue": "<string>",
          "confidence": 123,
          "reasoning": "<string>",
          "role": "<string>",
          "createdAt": "<string>"
        }
      ],
      "evidence": [
        {
          "snippetText": "<string>",
          "commentText": "<string>",
          "isPositive": true,
          "createdAt": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

ID of the call to fetch evaluation run for

Response

200
application/json

Evaluation run for a specific call

The response is of type object.