> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voiceflow.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get transcript

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



## OpenAPI

````yaml /specs/analytics/openapi.public.json get /v1/transcript/{transcriptID}
openapi: 3.0.0
info:
  title: Analytics
  description: Voiceflow analytics service
  version: 1.0.0
  contact: {}
servers:
  - url: https://analytics-api.voiceflow.com
security: []
paths:
  /v1/transcript/{transcriptID}:
    get:
      tags:
        - Transcript
        - Public-Docs
      summary: Get transcript
      description: Fetch a transcript with its logs, properties and evaluation results.
      operationId: TranscriptPublicController_findOneWithLogs_v1
      parameters:
        - name: transcriptID
          required: true
          in: path
          description: ID of the transcript to target.
          schema:
            description: ID of the transcript to target.
            type: string
        - name: unredacted
          required: false
          in: query
          schema:
            description: >-
              When enabled, un-redacted logs will be returned if they are still
              available.
            type: boolean
        - name: filterConversation
          required: false
          in: query
          schema:
            description: >-
              When enabled, only `text`, `speak` and `live-agent-handoff` traces
              will be returned.
            type: boolean
        - name: customTraceTypes
          required: false
          in: query
          schema:
            description: >-
              Used to indicate additional trace types that should be returned
              when `filterConversation` is enabled.
            type: array
            items:
              type: string
        - name: encode
          required: false
          in: query
          schema:
            description: Escape HTML special characters that appear in transcripts.
            type: boolean
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  transcript:
                    type: object
                    properties:
                      id:
                        type: string
                      userID:
                        type: string
                      sessionID:
                        type: string
                      projectID:
                        type: string
                      environmentID:
                        type: string
                      createdAt:
                        type: string
                        format: date-time
                      updatedAt:
                        type: string
                        format: date-time
                      expiresAt:
                        type: string
                        format: date-time
                        nullable: true
                      endedAt:
                        type: string
                        format: date-time
                        nullable: true
                      recordingURL:
                        type: string
                        nullable: true
                      properties:
                        type: array
                        items:
                          type: object
                          properties:
                            value:
                              type: string
                            metadata:
                              type: object
                              additionalProperties: {}
                              nullable: true
                            createdAt:
                              type: string
                              format: date-time
                            updatedAt:
                              type: string
                              format: date-time
                            id:
                              type: string
                            name:
                              type: string
                            type:
                              type: string
                            default:
                              type: boolean
                          required:
                            - value
                            - metadata
                            - createdAt
                            - updatedAt
                            - id
                            - name
                            - type
                            - default
                      evaluations:
                        type: array
                        items:
                          oneOf:
                            - type: object
                              properties:
                                value:
                                  oneOf:
                                    - type: number
                                    - type: string
                                    - type: boolean
                                reason:
                                  type: string
                                cost:
                                  type: number
                                createdAt:
                                  type: string
                                  format: date-time
                                updatedAt:
                                  type: string
                                  format: date-time
                                id:
                                  type: string
                                name:
                                  type: string
                                description:
                                  type: string
                                  nullable: true
                                default:
                                  type: boolean
                                type:
                                  type: string
                                  enum:
                                    - boolean
                              required:
                                - value
                                - reason
                                - cost
                                - createdAt
                                - updatedAt
                                - id
                                - name
                                - description
                                - default
                                - type
                            - type: object
                              properties:
                                value:
                                  oneOf:
                                    - type: number
                                    - type: string
                                    - type: boolean
                                reason:
                                  type: string
                                cost:
                                  type: number
                                createdAt:
                                  type: string
                                  format: date-time
                                updatedAt:
                                  type: string
                                  format: date-time
                                id:
                                  type: string
                                name:
                                  type: string
                                description:
                                  type: string
                                  nullable: true
                                default:
                                  type: boolean
                                type:
                                  type: string
                                  enum:
                                    - number
                                maximumValue:
                                  type: number
                                minimumValue:
                                  type: number
                              required:
                                - value
                                - reason
                                - cost
                                - createdAt
                                - updatedAt
                                - id
                                - name
                                - description
                                - default
                                - type
                                - maximumValue
                                - minimumValue
                            - type: object
                              properties:
                                value:
                                  oneOf:
                                    - type: number
                                    - type: string
                                    - type: boolean
                                reason:
                                  type: string
                                cost:
                                  type: number
                                createdAt:
                                  type: string
                                  format: date-time
                                updatedAt:
                                  type: string
                                  format: date-time
                                id:
                                  type: string
                                name:
                                  type: string
                                description:
                                  type: string
                                  nullable: true
                                default:
                                  type: boolean
                                type:
                                  type: string
                                  enum:
                                    - string
                              required:
                                - value
                                - reason
                                - cost
                                - createdAt
                                - updatedAt
                                - id
                                - name
                                - description
                                - default
                                - type
                            - type: object
                              properties:
                                value:
                                  oneOf:
                                    - type: number
                                    - type: string
                                    - type: boolean
                                reason:
                                  type: string
                                cost:
                                  type: number
                                createdAt:
                                  type: string
                                  format: date-time
                                updatedAt:
                                  type: string
                                  format: date-time
                                id:
                                  type: string
                                name:
                                  type: string
                                description:
                                  type: string
                                  nullable: true
                                default:
                                  type: boolean
                                type:
                                  type: string
                                  enum:
                                    - option
                                options:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      value:
                                        type: string
                                        minLength: 1
                                        maxLength: 100
                                      prompt:
                                        type: string
                                        minLength: 1
                                        maxLength: 10000
                                      included:
                                        type: boolean
                                      color:
                                        type: string
                                    required:
                                      - value
                                      - prompt
                                      - included
                                      - color
                              required:
                                - value
                                - reason
                                - cost
                                - createdAt
                                - updatedAt
                                - id
                                - name
                                - description
                                - default
                                - type
                                - options
                      history:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                            createdAt:
                              type: string
                              format: date-time
                          required:
                            - id
                            - createdAt
                      logs:
                        type: array
                        items:
                          type: object
                          properties:
                            type:
                              type: string
                              enum:
                                - trace
                                - action
                                - end
                              x-enumNames:
                                - TRACE
                                - ACTION
                                - END
                            data:
                              oneOf:
                                - oneOf:
                                    - type: string
                                    - type: number
                                    - type: boolean
                                - type: array
                                  items: {}
                                - type: object
                                  additionalProperties: {}
                            createdAt:
                              type: string
                              format: date-time
                            updatedAt:
                              type: string
                              format: date-time
                          required:
                            - type
                            - data
                            - createdAt
                            - updatedAt
                    required:
                      - id
                      - userID
                      - sessionID
                      - projectID
                      - environmentID
                      - createdAt
                      - updatedAt
                      - expiresAt
                      - endedAt
                      - recordingURL
                      - properties
                      - evaluations
                      - history
                      - logs
                required:
                  - transcript
      security:
        - auth: []
components:
  securitySchemes:
    auth:
      type: apiKey
      in: header
      name: authorization
      description: Voiceflow API key

````