---
title: "List simulation suite runs across the org"
method: GET
path: "/v1/sim-suites/runs"
tags: ["sim_suites"]
---

# List simulation suite runs across the org

`GET /v1/sim-suites/runs`

Suite-run batches across the whole org, newest first — replaces fanning out one `GET /v1/sim-suites/{suite_id}/runs` call per suite. Each row inlines `suite_name` and swaps the per-suite endpoint's full child-run array for `counts`, so a page stays small. Live operational data: always revalidate. There is no `status` filter — the rollup is computed from child runs rather than stored, so filter on it client-side.

## Query parameters

- `suite_id` string, uuid, nullable
- `agent_id` string, uuid, nullable
- `limit` integer
- `cursor` string, nullable

## Response `200`

Successful Response

- CursorPageSimulationSuiteRunSummaryResponse
  - `items` SimulationSuiteRunSummaryResponse[], required
    - `id` string, uuid, required
    - `organization_id` string, uuid, required
    - `suite_id` string, uuid, required
    - `suite_name` string, nullable
    - `agent_id` string, uuid, required
    - `agent_revision_id` string, uuid, nullable
    - `created_by` string, nullable
    - `created_at` string, date-time, required
    - `status` string, required
    - `counts` SuiteRunStatusCounts — Per-status child-run counts for one suite-run batch. Counted over the *latest attempt per suite item* (the same dedupe :func:`aggregate_suite_run_status` uses), so a retried-away FAILED original never shows up as a failure next to a ``status="completed"`` rollup.
      - `total_items` integer
      - `pending` integer
      - `running` integer
      - `completed` integer
      - `failed` integer
      - `cancelled` integer
      - `budget_exceeded` integer
    - `release_eval_status` string, nullable
    - `release_eval_completed_at` string, date-time, nullable
  - `next_cursor` string, nullable
  - `has_more` boolean, required

## Other responses

- `400` — Bad request
- `401` — Authentication required
- `422` — Validation Error

---

[API](https://skmtc.net/oneloop-hq/apis/feather-api.md) · [All operations](https://skmtc.net/oneloop-hq/apis/feather-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/oneloop-hq/feather-api/revisions/5a5597ebb2d6/schema)
