GET
/
runs
/
{run_id}
curl --request GET \
  --url https://api.honeyhive.ai/runs/{run_id} \
  --header 'Authorization: Bearer <token>'
{
  "evaluation": {
    "run_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "project": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "event_ids": [
      "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    ],
    "dataset_id": "<string>",
    "datapoint_ids": [
      "<string>"
    ],
    "results": {},
    "configuration": {},
    "metadata": {},
    "status": "pending",
    "name": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

run_id
string
required

Response

200
application/json
Successful response
evaluation
object

Was this page helpful?