---
title: "Get Task Progress"
method: GET
path: "/api/ade-bench/progress"
tags: ["ade-bench"]
deprecated: true
---

# Get Task Progress

`GET /api/ade-bench/progress`

> **Deprecated.**

Get cumulative task progress across selected runs.

Shows which tasks have been solved, test pass rates, and progress metrics.
If run_ids is provided, only those runs are considered. Otherwise, all runs are included.

## Query parameters

- `run_ids` string, nullable — Comma-separated list of run IDs to include

## Response `200`

Successful Response

- TaskProgressResponse — Response schema for task progress dashboard.
  - `tasks_solved` integer
  - `tasks_total` integer
  - `tasks_solved_pct` number
  - `tests_passing` integer
  - `tests_total` integer
  - `tests_passing_pct` number
  - `tasks` TaskProgressItem[]
    - `task_id` string, required
    - `status` 'solved' | 'partial' | 'failing', required — Status of a task based on best known result.
    - `tests_passing` integer
    - `tests_total` integer
    - `attempts` integer
    - `last_failure_mode` string, nullable
    - `last_run_id` string, nullable
    - `last_run_time` string, nullable
    - `first_solved_run_id` string, nullable
    - `langfuse_trace_url` string, nullable
    - `best_input_tokens` integer, nullable
    - `best_output_tokens` integer, nullable
    - `best_cost_usd` number, nullable

## 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/50769cbf05d5/schema)
