---
title: "Get Evaluation"
method: GET
path: "/reports/{report_id}"
tags: ["reports"]
---

# Get Evaluation

`GET /reports/{report_id}`

## Path parameters

- `report_id` integer, required

## Response `200`

Report retrieved successfully

- object
  - `success` boolean
  - `message` string
  - `report` object — The report data with all fields
    - `id` integer, required
    - `name` string, required
    - `comment` string, nullable
    - `is_blueprint` boolean, nullable
    - `deleted` boolean, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `score` object, nullable — Report score data
    - `score_configuration` object, nullable — Score configuration settings
    - `score_matrix` unknown
    - `score_calculation_error` string, nullable — Error message if score calculation failed
    - `parent_report_id` integer, nullable
    - `dataset_id` integer, nullable
    - `user_id` integer, nullable
    - `workspace_id` integer, required
    - `prompt_registry_id` integer, nullable — ID of associated prompt registry
    - `prompt_version_number` integer, nullable — Version number of associated prompt
  - `status` 'RUNNING' | 'COMPLETED' — Overall status of the report execution
  - `stats` object
    - `status_counts` object, required — Count of cells in each status
      - `COMPLETED` integer, required — Number of completed cells
      - `FAILED` integer, required — Number of failed cells
      - `QUEUED` integer, required — Number of queued cells
      - `RUNNING` integer, required — Number of running cells
  - `report_columns` object[] — Ordered list of column configurations for this report.
    - `id` integer
    - `report_id` integer
    - `column_type` string — Type of evaluation column (e.g. LLM_ASSERTION, PROMPT_TEMPLATE, COMPARE)
    - `name` string
    - `position` integer — Zero-based column order
    - `is_part_of_score` boolean
    - `configuration` object — Column-type-specific configuration
    - `score` number, nullable — Computed score for this column, if available

## Other responses

- `401` — Unauthorized - Invalid or missing authentication
- `404` — Report not found or not accessible
- `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)
