Skip to main content
GET
/
runs
/
{run_id}
Get run
curl --request GET \
  --url https://api.verial.ai/runs/{run_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "2023-11-07T05:31:56Z",
  "benchmark_id": "2023-11-07T05:31:56Z",
  "status": "<string>",
  "verdict": "<string>",
  "score": 123,
  "started_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z"
}
Returns the full run, including per-task results, verdict, and aggregated score.

Authorizations

Authorization
string
header
required

API key passed as a Bearer token.

Path Parameters

run_id
string
required

Run ID

Response

Successful response

id
string<date-time>
required
benchmark_id
string<date-time>
required
status
string
required
verdict
string | null
required
score
number | null
required
started_at
string<date-time>
required
completed_at
string<date-time>
required