---
title: "List Conversations"
method: GET
path: "/agent/analytics/conversations"
---

# List Conversations

`GET /agent/analytics/conversations`

Agent sessions that produced applied changes in the range, each with its
proposal outcomes. Sourced entirely from Postgres (agent-plan data), not the
ClickHouse change log.

## Query parameters

- `page` integer
- `limit` integer
- `date_range[since]` union, required
  - string, date
  - string, date-time
  - string
- `date_range[until]` union
  - string, date
  - string, date-time
  - string
- `tz` string, nullable
- `start_of_week` 0 | 1

## Headers

- `Authorization` string, nullable
- `X-User-Id` string, nullable
- `X-Browser-Time-Zone` string, nullable

## Cookies

- `session_id` string, nullable

## Response `200`

Successful Response

- ConversationsResponse
  - `items` ConversationSchema[], required
    - `agent_session_id` integer, required
    - `title` string, nullable, required
    - `kind` 'scheduled' | 'manual' | 'chat', required
    - `routine_name` string, nullable, required
    - `scheduled_task_id` integer, nullable, required
    - `when` string, date-time, required
    - `turn_count` integer, required
    - `change_count` integer, required
    - `failed_count` integer, required
    - `plan_count` integer, required
    - `proposal_count` integer, required
    - `accepted_count` integer, required
    - `rejected_count` integer, required
    - `follow_up_count` integer, required
    - `skipped_count` integer, required
    - `plan` ConversationPlanItem[], required
      - `summary` string, required
      - `object_scope` string, nullable
      - `object_name` string, nullable
      - `decision` 'accepted' | 'rejected' | 'skipped' | 'follow_up', required — The user's verdict on a single suggestion at apply time.
      - `applied_count` integer, required
      - `reason` string, nullable
  - `total_count` integer, required
  - `page` integer, required
  - `limit` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/runconverge/apis/fastapi.md) · [All operations](https://skmtc.dev/runconverge/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/runconverge/fastapi/revisions/1452e350bd1d/schema)
