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

# Retrieve a call transcript

> Returns the flat transcript text plus the speaker-diarized `structured_transcript` turns. Organizations whose call-content policy pins content to a compliance (HIPAA) boundary receive `403 content_policy_forbidden`. A call with no stored transcript returns `404 not_found`.



## OpenAPI

````yaml /openapi.json get /v1/calls/{id}/transcript
openapi: 3.1.0
info:
  title: RevDesk v1 API
  version: 1.0.0
  description: >-
    Programmatic access to the RevDesk voice platform — calls, numbers, caller
    trust, and brands.
  contact:
    name: RevDesk
    email: support@revdesk.com
servers:
  - url: https://api.revdesk.com
security:
  - bearerAuth: []
tags:
  - name: Phone Numbers
  - name: Caller IDs
  - name: Enterprise Registration
  - name: Branded Calling
  - name: Calls
  - name: SMS
  - name: WebRTC
  - name: Reputation
  - name: Usage
  - name: Account
  - name: Agents
  - name: Documents
  - name: Sub-entities
paths:
  /v1/calls/{id}/transcript:
    get:
      tags:
        - Calls
      summary: Retrieve a call transcript
      description: >-
        Returns the flat transcript text plus the speaker-diarized
        `structured_transcript` turns. Organizations whose call-content policy
        pins content to a compliance (HIPAA) boundary receive `403
        content_policy_forbidden`. A call with no stored transcript returns `404
        not_found`.
      operationId: v1_calls_id_transcript_get
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $schema: http://json-schema.org/draft-07/schema#
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      call_id:
                        type: string
                      transcript:
                        anyOf:
                          - type: string
                          - type: 'null'
                      structured_transcript:
                        anyOf:
                          - type: array
                            items:
                              type: object
                              properties:
                                role:
                                  type: string
                                text:
                                  type: string
                                timestamp:
                                  anyOf:
                                    - type: string
                                    - type: 'null'
                                interrupted:
                                  type: boolean
                                language:
                                  type: string
                              required:
                                - role
                                - text
                              additionalProperties: {}
                          - type: 'null'
                      transcript_provider:
                        anyOf:
                          - type: string
                          - type: 'null'
                    required:
                      - call_id
                      - transcript
                      - structured_transcript
                      - transcript_provider
                    additionalProperties: false
                required:
                  - data
                additionalProperties: false
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '409':
          description: Conflict (incl. idempotency conflicts)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
components:
  schemas:
    ErrorEnvelope:
      type: object
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
            fields:
              type: object
              additionalProperties:
                type: string
            doc_url:
              type: string
              format: uri
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````