---
title: "Get Sync Chat Session Transcript"
method: GET
path: "/agent-loop/sync-chat/sessions/{workspace_id}/transcript"
tags: ["sync-chat"]
---

# Get Sync Chat Session Transcript

`GET /agent-loop/sync-chat/sessions/{workspace_id}/transcript`

Full transcript of one of the caller's own push sessions (agent-facing).

The JWT's user_id scopes the query; a workspace_id not authored by this
user returns an empty transcript rather than another user's turns. This is
the data plane behind Sync Chat's read_session_transcript tool.

## Path parameters

- `workspace_id` string, required

## Query parameters

- `limit` integer — Maximum number of imported session turns to return, ordered oldest first.
- `include_message_deltas` boolean — Include stored replay message_deltas alongside user/assistant text.

## Headers

- `authorization` string, nullable

## Response `200`

Successful Response

- SyncChatTranscriptResponse — Full ordered transcript of one of the caller's push sessions.
  - `workspace_id` string, required
  - `turns` SyncChatTranscriptTurn[], required
    - `turn_id` string, required
    - `parent_id` string, nullable
    - `created_at` string, date-time, required
    - `completed_at` string, date-time, nullable
    - `status` string, required
    - `user_message` string, nullable, required
    - `assistant_text` string, nullable, required
    - `message_deltas` unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/tryscott/apis/one-shot-api.md) · [All operations](https://skmtc.net/tryscott/apis/one-shot-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tryscott/one-shot-api/versions/28bdface01df/schema)
