For the complete documentation index, see llms.txt. This page is also available as Markdown.

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.

https://api.roboflow.com/:workspace/model-evals
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

{
    "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}.

Last updated

Was this helpful?