Events
Datapoints
Datasets
Projects
Experiments
Get a list of evaluation runs
Get a list of evaluation runs
GET
/
runs
curl --request GET \
--url https://api.honeyhive.ai/runs \
--header 'Authorization: Bearer <token>'
{
"evaluations": [
{
"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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Response
200
application/json
Successful response
The UUID of the run
The UUID of the project this run is associated with
The date and time the run was created
The UUIDs of the sessions/events this run is associated with
The UUID of the dataset this run is associated with
The UUIDs of the datapoints from the original dataset this run is associated with
The results of the evaluation (including pass/fails and metric aggregations)
The configuration being used for this run
Additional metadata for the run
Available options:
pending
, completed
The name of the run to be displayed
Was this page helpful?
curl --request GET \
--url https://api.honeyhive.ai/runs \
--header 'Authorization: Bearer <token>'
{
"evaluations": [
{
"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>"
}
]
}