---
title: "GET Trust Center Conversations"
method: GET
path: "/v2/trust_center/conversations"
---

# GET Trust Center Conversations

`GET /v2/trust_center/conversations`

List Trust Center Agent conversations. Returns conversations between customers and the Trust Center AI agent, with nested messages and referenced documents. Use this to understand what prospects are asking during due diligence, which documents the agent recommends, and how conversations flow.

## Query parameters

- `created_at_start` string, date
- `created_at_end` string, date
- `include_interactions` 'true' | 'false'
- `page` integer
- `per_page` integer

## Headers

- `X-API-KEY` string, required

## Response `200`

Paginated list of Trust Center Agent conversations.

- object
  - `conversations` object[], required — List of Trust Center Agent conversations.
    - `id` string, uuid — Conversation identifier.
    - `user_email` string, nullable — Email of the visitor who started the conversation.
    - `created_at` string, date-time — When the conversation started.
    - `messages` object[] — Chronologically ordered messages.
      - `message_order` integer — Order of the message within the conversation.
      - `author_role` 'User' | 'Agent' — Author of the message.
      - `message_content` string — Message content.
      - `created_at` string, date-time, nullable — ISO 8601 timestamp of the individual message.
      - `is_helpful` boolean, nullable — Visitor feedback: true if helpful, false if not helpful, null if no feedback was given.
      - `feedback` object, nullable — Detailed feedback with category and comment, or null if no feedback was given.
        - `category` string — Feedback category.
        - `comment` string — Feedback comment.
      - `documents` object[] — Referenced Trust Center documents.
        - `id` string, uuid — Document identifier.
        - `name` string — Document name.
    - `interactions` object[], nullable — Detailed request and response interaction pairs. Only included when include_interactions=true.
      - `id` string, uuid — Interaction identifier.
      - `created_at` string, date-time — When the interaction was created.
      - `interaction_types` string[] — Types of agent actions performed in this interaction. Empty array if no tool calls.
      - `answer_confidences` string[] — Confidence level for each search query fired in the interaction. One entry per search query. Empty array if no search queries.
      - `user_message` object, nullable — User message for the interaction, or null.
        - `message_order` integer — Order of the message within the conversation.
        - `author_role` 'User' | 'Agent' — Author of the message.
        - `message_content` string — Message content.
        - `created_at` string, date-time, nullable — ISO 8601 timestamp of the individual message.
        - `is_helpful` boolean, nullable — Visitor feedback: true if helpful, false if not helpful, null if no feedback was given.
        - `feedback` object, nullable — Detailed feedback with category and comment, or null if no feedback was given.
          - `category` string — Feedback category.
          - `comment` string — Feedback comment.
        - `documents` object[] — Referenced Trust Center documents.
          - `id` string, uuid — Document identifier.
          - `name` string — Document name.
      - `agent_responses` object[] — Agent response messages for the interaction.
        - `message_order` integer — Order of the message within the conversation.
        - `author_role` 'User' | 'Agent' — Author of the message.
        - `message_content` string — Message content.
        - `created_at` string, date-time, nullable — ISO 8601 timestamp of the individual message.
        - `is_helpful` boolean, nullable — Visitor feedback: true if helpful, false if not helpful, null if no feedback was given.
        - `feedback` object, nullable — Detailed feedback with category and comment, or null if no feedback was given.
          - `category` string — Feedback category.
          - `comment` string — Feedback comment.
        - `documents` object[] — Referenced Trust Center documents.
          - `id` string, uuid — Document identifier.
          - `name` string — Document name.
  - `page` integer, required — Current page number.
  - `per_page` integer, required — Number of results per page.
  - `total_pages` integer, required — Total number of pages.

---

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