> For the complete documentation index, see [llms.txt](https://docs.roboflow.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.roboflow.com/developer/rest-api/model-evaluations/list-model-evaluations.md).

# List Model Evaluations

List the model evaluations in a workspace. Returns a lean projection - for headline metrics on a specific evaluation, follow up with [Get a Model Evaluation](/developer/rest-api/model-evaluations/get-a-model-evaluation.md).

```url
https://api.roboflow.com/:workspace/model-evals
```

```bash
curl "https://api.roboflow.com/my-workspace/model-evals?api_key=$ROBOFLOW_API_KEY&status=done&limit=10"
```

## Query parameters

| Parameter                     | Type    | Description                                                      |
| ----------------------------- | ------- | ---------------------------------------------------------------- |
| `project`                     | string  | Filter to a project by its URL slug (e.g. `chess-pieces-fmhpz`)  |
| `version` (alias `versionId`) | string  | Filter to a specific version (e.g. `"4"`)                        |
| `model` (alias `modelId`)     | string  | Filter to evaluations of a specific model ID                     |
| `status`                      | enum    | One of `running`, `done`, `failed`. Unknown values return `400`. |
| `limit`                       | integer | Page size; default `50`, max `200`                               |

At most one of `project` / `version` / `model` may be set per call (the most specific wins: `model` > `version` > `project`). Combinations are rejected with `400 invalid_filter_combination` to keep the storage indices bounded.

## Response

```json
{
    "evals": [
        {
            "evalId": "huUF720inUcymARwqAGK",
            "status": "done",
            "project": "chess-pieces-fmhpz",
            "versionId": "4",
            "modelId": null,
            "createdAt": "2026-04-27T20:04:10.904Z"
        }
    ]
}
```

`project` is the project's URL slug - the same identifier the REST API uses in URL paths (`/:workspace/:project/...`). To deep-link to the evaluation UI: `https://app.roboflow.com/{workspace}/{project}/evaluation/{versionId}`.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.roboflow.com/developer/rest-api/model-evaluations/list-model-evaluations.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
