---
title: "List Red Team Results"
method: GET
path: "/evaluations/v1/red-team"
tags: ["Red Team Evaluations"]
---

# List Red Team Results

`GET /evaluations/v1/red-team`

[BETA] This endpoint is not GA or Production ready and is subject to changes at any time. Breaking changes may occur.

List completed red team workflow results with filtering and bidirectional pagination.

Results are ordered by completed_at DESC (newest first).
Returns metadata only - use GET /evaluations/v1/red-team/{workflow_id} for full payload.

## Query parameters

- `target_model` string — Filter by target model
- `workflow_type` string — Filter by workflow type
- `status` string — Filter by workflow status
- `start_time_from` string, date-time — Filter for results started after this time
- `start_time_to` string, date-time — Filter for results started before this time
- `limit` integer — Maximum number of results to return
- `page_size` integer — Deprecated alias for `limit`. Use `limit` instead. Will be removed after SDK regen.
- `cursor` string — Pagination cursor from previous response

## Response `200`

List of result metadata

- RedTeamListResultsResponse — Paginated list of red team workflow results.
  - `first` string — Cursor for first page
  - `next` string — Cursor for next page
  - `prev` string — Cursor for previous page
  - `last` string — Cursor for last page (empty string when not known)
  - `items` RedTeamResultItem[], required — List of result metadata items
    - `workflow_id` string, required — Workflow identifier
    - `run_id` string, required — Run identifier
    - `name` string, required — Workflow name
    - `target_model` string, required — Target model used
    - `objective_ids` string[], required — Objective IDs evaluated
    - `started_at` string, date-time, required — When the workflow started
    - `completed_at` string, date-time, required — When the workflow completed
    - `attack_success_rate` number, double — Attack success rate as a percentage (0 to 100)
    - `highest_severity` 'CRITICAL' | 'HIGH' | 'MEDIUM' | 'LOW' | 'NONE' — Highest objective severity in the completed red team report

## Other responses

- `401` — Authentication Error
- `403` — Forbidden Error
- `422` — Validation Error
- `500` — An unexpected error occurred preventing the operation from being performed.

---

[API](https://skmtc.net/hiddenlayerai/apis/hiddenlayer-audit-api.md) · [All operations](https://skmtc.net/hiddenlayerai/apis/hiddenlayer-audit-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hiddenlayerai/hiddenlayer-audit-api/revisions/efca861e915b/schema)
