---
title: "List Runs"
method: GET
path: "/api/ade-bench/runs"
tags: ["ade-bench"]
---

# List Runs

`GET /api/ade-bench/runs`

List benchmark runs with pagination and optional filters.

Returns a paginated list of benchmark run metadata, sorted by start time (most recent first).

## Query parameters

- `limit` integer — Results per page
- `offset` integer — Offset for pagination
- `agent` string, nullable — Filter by agent name
- `model` string, nullable — Filter by model name
- `start_date` string, nullable — Filter runs after this date (ISO format)
- `end_date` string, nullable — Filter runs before this date (ISO format)

## Response `200`

Successful Response

- RunListResponse — Response schema for paginated run list.
  - `runs` RunMetadataResponse[], required
    - `run_id` string, required
    - `uuid` string, nullable
    - `dataset_path` string, nullable
    - `output_path` string, nullable
    - `agent_name` string, required
    - `model_name` string, nullable
    - `dataset_size` integer
    - `n_attempts` integer
    - `n_concurrent_trials` integer
    - `accuracy` number, nullable
    - `pass_at_k` object, nullable
    - `start_time` string, nullable
    - `end_time` string, nullable
    - `commit_hash` string
    - `username` string
    - `use_mcp` boolean
    - `n_resolved` integer, nullable
    - `n_unresolved` integer, nullable
    - `tasks_attempted` integer, nullable
    - `total_cost_usd` number, nullable
    - `total_tokens` integer, nullable
    - `avg_runtime_ms` number, nullable
  - `total` integer, required
  - `limit` integer, required
  - `offset` integer, required
  - `has_more` boolean, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/myaltimate/apis/fastapi.md) · [All operations](https://skmtc.net/myaltimate/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/myaltimate/fastapi/versions/aab3fe5c9f05/schema)
