---
title: "List Text Agent Findings Route"
method: GET
path: "/api/v1/text-ai/text-agents/{agent_id}/findings"
tags: ["text-ai", "text_findings"]
---

# List Text Agent Findings Route

`GET /api/v1/text-ai/text-agents/{agent_id}/findings`

List findings for a specific text agent.

Same shape as the group variant but scoped to a single agent.

## Path parameters

- `agent_id` string, uuid, required

## Query parameters

- `window` string
- `group_by` string
- `limit` integer
- `include_resolved` boolean

## Response `200`

Successful Response

- FindingsQueryResponse — V1.2 — per-subject findings with optional bucketed aggregation. ``groups`` contains aggregated counts keyed by ``raw_payload.finding_category`` (``group_by=tag``, reviewer findings only) or by ``source`` column (``group_by=source``). ``items`` carries the most recent findings up to ``limit``.
  - `subject` SubjectRead, required — Subject of a Flywheel cycle (V1.1a). Mirrors the ``Subject`` discriminated dataclass used internally — a cycle is scoped to either a standalone ``VoiceAgent`` or a ``VoiceAgentGroup``. The XOR is enforced at the DB layer via ``ck_flywheel_runs_subject_xor`` on ``flywheel_runs``.
    - `kind` 'agent' | 'group', required
    - `id` string, uuid, required
  - `window` string, required
  - `total` integer, required
  - `groups` FindingsGroupBucket[], required
    - `key` string, required
    - `count` integer, required
  - `items` EvaluationFindingRead[], required
    - `id` string, uuid, required
    - `tenant_id` string, uuid, required
    - `voice_call_id` string, uuid, nullable, required
    - `voice_call_external_id` string, nullable
    - `voice_agent_id` string, uuid, nullable, required
    - `voice_agent_version_id` string, uuid, nullable, required
    - `text_session_id` string, uuid, nullable
    - `text_agent_id` string, uuid, nullable
    - `text_agent_name` string, nullable
    - `source_environment` string, nullable
    - `raw_payload` object, required
    - `dismissed_reason` string, nullable, required
    - `dismissed_at` string, date-time, nullable, required
    - `batched_in_flywheel_run_id` string, uuid, nullable, required
    - `resolved_at` string, date-time, nullable, required
    - `resolved_by_user_id` string, uuid, nullable, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required

## Other responses

- `401` — Tenant context required
- `422` — Validation Error

## Changes

> 21 revisions in range; 1 not diffed.

- **2026-09-03** `d65b8fefae34` — 2 info
  - added the optional property `detail/items/ctx` to the response with the `422` status
  - added the optional property `detail/items/input` to the response with the `422` status

[Change history](https://skmtc.dev/getanana/apis/cleon-api/changes/api/v1/text-ai/text-agents/:agent_id/findings/get.md)

---

[API](https://skmtc.dev/getanana/apis/cleon-api.md) · [All operations](https://skmtc.dev/getanana/apis/cleon-api/llms.txt) · [OpenAPI document](https://skmtc.dev/getanana/apis/cleon-api/revisions/59d90f796108?raw)
