---
title: "Get transcript"
method: GET
path: "/v1/transcript/{transcriptID}"
tags: ["Transcript", "Public-Docs"]
---

# Get transcript

`GET /v1/transcript/{transcriptID}`

Fetch a transcript with its logs, properties and evaluation results.

## Path parameters

- `transcriptID` string, required — ID of the transcript to target.

## Query parameters

- `unredacted` boolean — When enabled, un-redacted logs will be returned if they are still available.
- `filterConversation` boolean — When enabled, only `text`, `speak` and `live-agent-handoff` traces will be returned.
- `customTraceTypes` string[] — Used to indicate additional trace types that should be returned when `filterConversation` is enabled.
- `encode` boolean — Escape HTML special characters that appear in transcripts.

## Response `200`

- object
  - `transcript` TranscriptWithLogsResponse, required
    - `id` string, required
    - `userID` string, required
    - `sessionID` string, required
    - `projectID` string, required
    - `environmentID` string, required
    - `projectEnvironmentID` string, nullable
    - `createdAt` string, date, required
    - `updatedAt` string, date, required
    - `expiresAt` string, date, nullable, required
    - `endedAt` string, date, nullable, required
    - `recordingURL` string, nullable, required
    - `properties` TranscriptPropertyWithValue[], required
      - `value` string, required
      - `metadata` object, nullable, required
      - `createdAt` string, date, required
      - `updatedAt` string, date, required
      - `id` string, required
      - `name` string, required
      - `type` string, required
      - `default` boolean, required
    - `evaluations` TranscriptEvaluationWithResult[], required
      - union
        - BooleanTranscriptEvaluationWithResult
          - `value` union, required
            - number
            - string
            - boolean
          - `reason` string, required
          - `cost` number, required
          - `createdAt` string, date, required
          - `updatedAt` string, date, required
          - `id` string, required
          - `name` string, required
          - `description` string, nullable, required
          - `default` boolean, required
          - `type` 'boolean', required
        - NumberTranscriptEvaluationWithResult
          - `value` union, required
            - number
            - string
            - boolean
          - `reason` string, required
          - `cost` number, required
          - `createdAt` string, date, required
          - `updatedAt` string, date, required
          - `id` string, required
          - `name` string, required
          - `description` string, nullable, required
          - `default` boolean, required
          - `type` 'number', required
          - `maximumValue` number, required
          - `minimumValue` number, required
        - StringTranscriptEvaluationWithResult
          - `value` union, required
            - number
            - string
            - boolean
          - `reason` string, required
          - `cost` number, required
          - `createdAt` string, date, required
          - `updatedAt` string, date, required
          - `id` string, required
          - `name` string, required
          - `description` string, nullable, required
          - `default` boolean, required
          - `type` 'string', required
        - OptionTranscriptEvaluationWithResult
          - `value` union, required
            - number
            - string
            - boolean
          - `reason` string, required
          - `cost` number, required
          - `createdAt` string, date, required
          - `updatedAt` string, date, required
          - `id` string, required
          - `name` string, required
          - `description` string, nullable, required
          - `default` boolean, required
          - `type` 'option', required
          - `options` TranscriptEvaluationOptionSchema[], required
            - `value` string, required
            - `prompt` string, required
            - `included` boolean, required
            - `color` string, required
    - `history` object[], required
      - `id` string, required
      - `createdAt` string, date, required
    - `logs` TranscriptLogResponse[], required
      - `type` 'trace' | 'action' | 'end', required
      - `data` union, required
        - string
        - number
        - boolean
        - Schema0[]
        - object
      - `createdAt` string, date, required
      - `updatedAt` string, date, required

---

[API](https://skmtc.dev/voiceflow/apis/general-runtime.md) · [All operations](https://skmtc.dev/voiceflow/apis/general-runtime/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/voiceflow/general-runtime/revisions/6b1c4f778c56/schema)
