---
title: "List Runs"
method: GET
path: "/v1/task-agents/{agent_id}/runs"
tags: ["Web Search Agents (public)"]
deprecated: true
---

# List Runs

`GET /v1/task-agents/{agent_id}/runs`

> **Deprecated.**

List runs for this instance.

``status`` accepts a lowercase `TaskRunStatusValue` (e.g. "completed") or
a comma-separated list of them (e.g. "queued,running").

## Path parameters

- `agent_id` string, uuid, required

## Query parameters

- `offset` integer
- `limit` integer

## Response `200`

Successful Response

- ListResponseTaskRunResponsePublicV1
  - `items` TaskRunResponsePublicV1[], required — Items returned in this page.
    - `completed_at` string, date-time, nullable — When the run completed.
    - `created_at` string, date-time, required — When the run was created.
    - `effort` 'low' | 'medium' | 'high' | 'x-high' | '5x-high' | 'max', required — Canonical effort tier names for the research graph.
    - `error` TaskRunErrorPublicV1
      - `message` string, required — Human-readable error description.
      - `ref_id` string, required — Reference ID (equals the run id).
    - `id` string, required — Run identifier, format "task_run_{uuid}".
    - `interaction_id` string, required — Interaction ID.
    - `is_active` boolean, required — True while status is 'queued' or 'running'.
    - `prompt` string, nullable — Prompt submitted for the run.
    - `started_at` string, date-time, nullable — When the run started executing.
    - `status` 'queued' | 'running' | 'completed' | 'failed' | 'cancelled', required — Lowercase status values used in API responses (distinct from the DB-level TaskRunStatus enum).
    - `web_search_agent_id` string, required — Web Search Agent instance this run belongs to.
  - `limit` integer, required — Maximum number of items returned.
  - `offset` integer, required — Number of items skipped before this page.
  - `total` integer, required — Total number of items matching the query.

## Other responses

- `422` — Validation Error

## Changes

- **2026-08-17** `22c2a2291146` — 1 warning
  - added the new `5x-high` enum value to the `items/items/effort` response property for the response status `200`
- **2026-07-20** `d4e4f170f4f4` — 1 breaking, 6 warning, 8 info
  - for the `query` request parameter `limit`, default value was changed from `20` to `100`
  - for the `query` request parameter `limit`, the max was set to `200.00`
  - for the `query` request parameter `limit`, the min was set to `1.00`
  - for the `query` request parameter `offset`, the min was set to `0.00`
  - …11 more
- **2026-07-12** `e8a97dc9fce2` — 2 breaking, 1 warning, 9 info
  - for the `path` request parameter `agent_id`, the type/format was changed from `string`/`` to `string`/`uuid`
  - the response's body type/format changed from `array`/`` to `object`/`` for status `200`
  - deleted the `cookie` request parameter `token`
  - api operation id `list_runs_v2_web_search_agents__agent_id__runs_get` removed and replaced with `list_runs_api_v2_public_web_search_agents__agent_id__runs_get`
  - …8 more
- **2026-07-07** `ebe52c375b71` — 1 breaking
  - the `items/web_search_agent_id/anyOf[subschema #1]/` response's property type/format changed from `string`/`uuid` to `string`/`` for status `200`
- **2026-06-10** `421a9851d61b` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/nimbleway/apis/api-gateway/changes/v1/task-agents/:agent_id/runs/get.md)

---

[API](https://skmtc.dev/nimbleway/apis/api-gateway.md) · [All operations](https://skmtc.dev/nimbleway/apis/api-gateway/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/nimbleway/api-gateway/revisions/d1947ec7af21/schema)
