---
title: "List Evaluations"
method: GET
path: "/api/public/v2/evaluations"
tags: ["evaluations"]
---

# List Evaluations

`GET /api/public/v2/evaluations`

## Query parameters

- `workspace_id` integer
- `name` string
- `status` 'active' | 'deleted' | 'all'
- `include_runs` boolean
- `page` integer
- `per_page` integer
- `created_by_email` string
- `created_after` string, date-time
- `created_before` string, date-time
- `updated_after` string, date-time
- `updated_before` string, date-time
- `external_source` string
- `external_id` string
- `sort_by` 'created_at' | 'updated_at' | 'name' | 'id'
- `sort_order` 'asc' | 'desc'

## Response `200`

Successful response

- object
  - `success` boolean, required
  - `message` string, required
  - `evaluations` Evaluation[], required
    - `id` integer, required — Unique identifier for the evaluation
    - `name` string, required — Name of the evaluation
    - `comment` string, nullable — Optional comment or description for the evaluation
    - `created_at` string, date-time — Timestamp when the evaluation was created
    - `updated_at` string, date-time — Timestamp when the evaluation was last updated
    - `workspace_id` integer, required — ID of the workspace this evaluation belongs to
    - `folder_id` integer, nullable — ID of the folder containing this evaluation
    - `user_id` integer, nullable — ID of the user who created this evaluation
    - `dataset_id` integer, nullable — ID of the dataset associated with this evaluation
    - `is_blueprint` boolean — Whether this is a blueprint (pipeline definition) or a batch run
    - `tags` object, nullable — Tags associated with this evaluation
    - `deleted` boolean — Whether this evaluation has been deleted
    - `parent_report_id` integer, nullable — ID of the parent blueprint (set for batch runs)
    - `score_configuration` object, nullable — Custom scoring configuration for this evaluation
    - `runs` object[] — Batch runs for this evaluation. Only present when include_runs=true.
      - `id` integer — Unique identifier for the run
      - `name` string — Name of the run
      - `comment` string, nullable — Optional comment or description
      - `created_at` string, date-time — Timestamp when the run was created
      - `updated_at` string, date-time — Timestamp when the run was last updated
      - `workspace_id` integer — ID of the workspace
      - `folder_id` integer, nullable — ID of the folder
      - `user_id` integer, nullable — ID of the user who created this run
      - `dataset_id` integer, nullable — ID of the dataset
      - `is_blueprint` boolean — Whether this is a blueprint
      - `tags` object, nullable — Tags associated with this run
      - `deleted` boolean — Whether this run has been deleted
      - `parent_report_id` integer, nullable — ID of the parent blueprint
      - `score_configuration` object, nullable — Custom scoring configuration
      - `score` object, nullable — Computed score for this run
      - `score_matrix` unknown[], nullable — Matrix of scores across evaluation columns
        - unknown
      - `score_calculation_error` string, nullable — Error message if score calculation failed
      - `status` 'RUNNING' | 'COMPLETED' — Current status of the batch run
      - `stats` object — Run statistics
        - `status_counts` object — Count of cells by status
    - `external_ids` ExternalId[] — External ID mappings attached to this evaluation.
      - `source` string, required — The external system or namespace that owns the ID.
      - `external_id` string, required — The identifier for this entity in the external system.
  - `page` integer, required
  - `per_page` integer, required
  - `total` integer, required
  - `pages` integer, required

## Other responses

- `400` — Invalid workspace_id
- `401` — Unauthorized - missing or invalid API key.
- `422` — Validation error - request parameters or body are invalid.

---

[API](https://skmtc.dev/promptlayer/apis/promptlayer-api.md) · [All operations](https://skmtc.dev/promptlayer/apis/promptlayer-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/promptlayer/promptlayer-api/revisions/a23093a0a506/schema)
