---
title: "List Facts"
method: GET
path: "/interactions/{id}/facts/"
tags: ["Facts"]
---

# List Facts

`GET /interactions/{id}/facts/`

Retrieves a list of facts for a given interaction.

## Path parameters

- `id` string, uuid, required

## Headers

- `Tenant-Name` string, required — Identifies a distinct entity within Corti's multi-tenant system. Ensures correct routing and authentication of the request.

## Response `200`

Returns a list of facts associated with the specified interaction.

- FactsListResponse
  - `facts` FactsListItem[], required — A list of facts associated with the interaction.
    - `id` string, uuid — The unique identifier of the fact.
    - `text` string — The text content of the fact.
    - `group` string — The key identifying the group to which the fact belongs.
    - `groupId` string, uuid
    - `isDiscarded` boolean — Indicates whether the fact has been marked as discarded by an end-user.
    - `source` 'core' | 'system' | 'user'
    - `createdAt` string, date-time — The timestamp when the fact was created.
    - `updatedAt` string, date-time — The timestamp when the fact was last updated.
    - `evidence` FactsEvidence[]
      - `type` string — The category of evidence.
      - `reference` string — A reference that supports the fact.
      - `quote` string — A direct excerpt or phrase extracted from the reference source that justifies the fact.

## Other responses

- `504` — RFC9457

---

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