List evaluation results
Returns the per-dataset-item results of an evaluation — one row per dataset item, each with its workflow runs and metric scores. Paginated.
Authorization
personalAccessToken Personal Access Token of a Dynamiq user — the only credential accepted by the management API (api.*). Prefix dyn_pat_ (legacy uak_ tokens still authenticate). Send as Authorization: Bearer <token>.
In: header
Path Parameters
Evaluation UUID.
Query Parameters
Page number (1-based).
Number of items per page. Values below the minimum or above the maximum are clamped to the nearest bound.
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/evaluations/497f6eca-6276-4993-bfeb-53cbbbba6f08/results"{
"data": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"dataset_version_id": "04e89766-1052-429f-ac43-0b0a79802db7",
"data": {},
"runs": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"evaluation_id": "4108ec8e-6efd-4b9b-bace-0bb4c296c324",
"workflow_id": "03e70e31-d7a4-4401-a629-6a4b6096cdfe",
"workflow_version_id": "60bab57e-9f59-448d-bef4-a6fd602db8a4",
"dataset_id": "8c4c51f1-f6f3-43bc-b65d-7415e8ef22c0",
"dataset_version_id": "04e89766-1052-429f-ac43-0b0a79802db7",
"dataset_item_id": "3bff1271-fc7e-4f1d-a74b-cb0074ecb252",
"input": {},
"output": {},
"status": "failed",
"trace_id": "df570c03-5a03-4cea-8df0-c162d05127ac",
"error": null,
"started_at": "2019-08-24T14:15:22Z",
"ended_at": "2019-08-24T14:15:22Z",
"evaluation_task_id": "272fa483-077f-49bb-bc77-414dbd1ef5cb",
"scores": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"evaluation_run_id": "05a12833-ea7a-4242-966f-65dd09ea69aa",
"evaluation_id": "4108ec8e-6efd-4b9b-bace-0bb4c296c324",
"dataset_item_id": "3bff1271-fc7e-4f1d-a74b-cb0074ecb252",
"metric_id": "e3216117-28d7-4548-9b5f-7e08a760b2c7",
"metric_version_id": "6a8aaa42-ffc3-428f-ac36-ffb02e6fb61b",
"score": {
"value": 0,
"comment": "string"
},
"metric": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"type": "llm_as_a_judge"
},
"metric_version": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"version": 0
}
}
],
"workflow": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string"
},
"workflow_version": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"version": 0
}
}
],
"scores": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"evaluation_run_id": "05a12833-ea7a-4242-966f-65dd09ea69aa",
"evaluation_id": "4108ec8e-6efd-4b9b-bace-0bb4c296c324",
"dataset_item_id": "3bff1271-fc7e-4f1d-a74b-cb0074ecb252",
"metric_id": "e3216117-28d7-4548-9b5f-7e08a760b2c7",
"metric_version_id": "6a8aaa42-ffc3-428f-ac36-ffb02e6fb61b",
"score": {
"value": 0,
"comment": "string"
},
"metric": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"type": "llm_as_a_judge"
},
"metric_version": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"version": 0
}
}
]
}
],
"pagination": {
"page": 0,
"page_size": 0,
"page_count": 0,
"total_count": 0
}
}{
"error": {
"code": "unauthorized",
"message": "Unauthorized"
}
}{
"error": {
"code": "not_found",
"message": "Not Found"
}
}Get evaluation metric summary
Returns aggregated metric statistics for an evaluation, grouped by workflow. Each metric reports its average, minimum, and maximum score across the dataset.
Download evaluation results
Streams the full evaluation results as a downloadable JSON file (`Content-Disposition: attachment; filename="evaluation-<evaluation_id>-results.json"`). The body is a JSON object with the `evaluation` and a `results` array of the same per-item result objects returned by the results endpoint.