---
title: "Get Run Results"
method: GET
path: "/api/v1/optimization/runs/{run_id}/results"
tags: ["optimization"]
---

# Get Run Results

`GET /api/v1/optimization/runs/{run_id}/results`

Return per-example evaluation results for an optimization run.

## Path parameters

- `run_id` string, required — Identifier of the optimization run whose results to list.

## Query parameters

- `limit` integer — Maximum number of evaluation rows to return.
- `offset` integer — Pagination offset into the evaluation results.

## Response `200`

Successful Response

- EvaluationResultsResponse — Paginated evaluation results for a run.
  - `items` EvaluationResultItem[], required — Evaluation result items.
    - `id` string, required — Unique evaluation result identifier.
    - `example_index` integer, required — Zero-based index in the dataset.
    - `input_data` string, required — JSON-serialized input fields.
    - `expected_output` string, nullable — Expected/gold output.
    - `predicted_output` string, nullable — Model predicted output.
    - `score` number, required — Score for this example (0.0-1.0).
  - `total` integer, required — Total evaluation results for the run.
  - `offset` integer, required — Current pagination offset.
  - `limit` integer, required — Current page size.
  - `has_more` boolean, required — Whether more results exist beyond this page.

## Other responses

- `401` — Authentication is required or the provided token is invalid.
- `404` — Run not found.
- `422` — Validation Error

---

[API](https://skmtc.net/qredence/apis/fleet-rlm.md) · [All operations](https://skmtc.net/qredence/apis/fleet-rlm/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/qredence/fleet-rlm/revisions/62e8c152aa18/schema)
