---
title: "List call summaries"
method: GET
path: "/calls/{id}/summaries"
tags: ["Calls"]
---

# List call summaries

`GET /calls/{id}/summaries`

Returns all AI-generated summaries for a call. Each summary corresponds to a summary template configured in the workspace.

## Path parameters

- `id` string, required — Call ID (positive integer) or UUID

## Response `200`

List of call summaries

- CallSummaryListResponse
  - `data` CallSummary[], required
    - `uuid` string, uuid, required — Summary answer UUID
    - `templateUuid` string, uuid, required — UUID of the summary template used to generate this summary
    - `templateTitle` string, required — Title of the summary template
    - `templateLength` 'short' | 'detailed' | 'adjusted', required — Length setting of the template: short, detailed, or adjusted (adapts to call duration)
    - `answer` string, nullable, required — The AI-generated summary text. Null if the summary has not been generated yet.
    - `language` string, nullable, required — Language of the summary (BCP 47)
    - `createdOn` string, nullable, required — Creation timestamp (ISO 8601)
    - `modifiedOn` string, nullable, required — Last modification timestamp (ISO 8601)

## Other responses

- `404` — Call not found

---

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