Skip to main content
GET
/
{slug}
/
evaluations
/
{eval_id}
/
runs
Get evaluation runs
curl --request GET \
  --url https://api.dimred.com/api/v2/{slug}/evaluations/{eval_id}/runs \
  --header 'X-API-Key: <api-key>'
[
  {
    "eval_id": "<string>",
    "eval_run_id": "<string>",
    "data_point_id": "<string>",
    "input_data": {},
    "output_data": {},
    "expected_output": {},
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

X-API-Key
string
header
required

API key for authentication

Path Parameters

slug
string
required

Organization slug

eval_id
string
required

Evaluation ID

Query Parameters

limit
integer

Maximum number of runs to return

page
integer

Page number for pagination

Response

200 - application/json

Evaluation runs retrieved successfully

eval_id
string
required

Unique identifier for the evaluation

eval_run_id
string
required

Unique identifier for the evaluation run

data_point_id
string
required

Identifier for the data point

input_data
object
required

Input data for the evaluation

output_data
object
required

Output data from the model

expected_output
object
required

Expected output for the evaluation

created_at
string<date-time>
required

Timestamp when the evaluation run was created

I