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

# Get a recording transcript

> Returns the recording's transcript as an ordered list of utterances with resolved speaker names. The transcript is an empty array until the recording has been processed.



## OpenAPI

````yaml /openapi.json get /v1/recordings/{id}/transcript
openapi: 3.1.0
info:
  title: Sales Ask API
  version: 1.0.0
  description: >-
    Public API for integrating with Sales Ask. Authenticate every request using
    your organization API key in the x-api-key header. To generate an API key,
    call POST /organizations/:organizationId/api-key while authenticated as an
    organization admin.
servers:
  - url: https://integrations.salesask.com
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /v1/recordings/{id}/transcript:
    get:
      tags:
        - Recordings
      summary: Get a recording transcript
      description: >-
        Returns the recording's transcript as an ordered list of utterances with
        resolved speaker names. The transcript is an empty array until the
        recording has been processed.
      operationId: getRecordingTranscript
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The recording ID
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  recordingId:
                    type: string
                    example: abc123
                  transcript:
                    type: array
                    items:
                      $ref: '#/components/schemas/TranscriptEntry'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Recording not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    TranscriptEntry:
      type: object
      properties:
        speaker:
          type: string
          description: >-
            Resolved speaker name from the recording's roles (e.g. Sales Rep,
            Client), falling back to diarization labels like Speaker A
          example: Sales Rep
        text:
          type: string
          example: Thanks for taking the time today.
        start:
          type: number
          description: Utterance start time in milliseconds
          example: 1200
        end:
          type: number
          description: Utterance end time in milliseconds
          example: 4350
    Error:
      type: object
      properties:
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````