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

# Call Transcriptions

> Retrieves the transcription for a specific call log



## OpenAPI

````yaml GET /api/v1/call-logs/{id}/transcriptions
openapi: 3.0.1
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.callx.io
security:
  - bearerAuth: []
paths:
  /api/v1/call-logs/{id}/transcriptions:
    get:
      description: Retrieves the transcription for a specific call log
      operationId: getCallLogTranscriptions
      parameters:
        - name: id
          in: path
          required: true
          description: The ID of the call log
          schema:
            type: string
        - name: format
          in: query
          required: false
          description: Response format (text for plain text, omit for JSON)
          schema:
            type: string
            enum:
              - text
      responses:
        '200':
          description: Transcription retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Transcription'
            text/plain:
              schema:
                type: string
                description: Plain text transcription
        '400':
          description: Bad request or validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Call log or transcription not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Transcription:
      type: object
      required:
        - id
        - callLogId
        - transcript
        - createdAt
      properties:
        id:
          type: string
          description: Unique identifier for the transcription
        callLogId:
          type: string
          description: ID of the associated call log
        transcript:
          type: array
          items:
            type: object
            required:
              - speaker
              - text
              - timestamp
            properties:
              speaker:
                type: string
                description: The speaker (assistant or customer)
                enum:
                  - assistant
                  - customer
              text:
                type: string
                description: The transcribed text
              timestamp:
                type: string
                format: date-time
                description: Timestamp of when this part was spoken
          description: Array of transcribed segments with speaker information
        createdAt:
          type: string
          format: date-time
          description: When the transcription was created
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````