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

# Get Call Transcript

> Retrieve the full transcript for a call.



## OpenAPI

````yaml /api/openapi.json get /calls/{id}/transcript/
openapi: 3.1.0
info:
  title: Craft API
  description: Public API for programmatic access to your Craft data.
  version: 1.0.0
servers:
  - url: https://data.craftflow.co/api/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /calls/{id}/transcript/:
    get:
      tags:
        - Calls
      summary: Get Call Transcript
      description: Retrieve the full transcript for a call.
      operationId: getCallTranscript
      parameters:
        - name: id
          in: path
          description: The unique identifier of the call.
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: The transcript for the call.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/CallTranscript'
                required:
                  - data
              example:
                data:
                  id: f6a7b8c9-d0e1-2345-fabc-678901234567
                  transcript:
                    - speaker: CSR
                      text: Thank you for calling, how can I help you today?
                      start: 0
                      end: 2800
                    - speaker: Customer
                      text: Hi, my AC stopped working and it's really hot in here.
                      start: 3200
                      end: 6500
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Call not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error:
                  detail: Not found.
        '429':
          description: Rate limit exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    CallTranscript:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the call.
        transcript:
          type: array
          description: List of transcript utterances with speaker labels and timing.
          items:
            $ref: '#/components/schemas/CallUtterance'
      required:
        - id
        - transcript
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            detail:
              type: string
              description: Human-readable error message.
          required:
            - detail
      required:
        - error
    CallUtterance:
      type: object
      properties:
        speaker:
          type: string
          description: Speaker role (e.g. "CSR", "Customer").
        text:
          type: string
          description: The spoken text of the utterance.
        start:
          type: integer
          description: Start time in milliseconds from the beginning of the call.
        end:
          type: integer
          description: End time in milliseconds from the beginning of the call.
      required:
        - speaker
        - text
        - start
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Your API key, prefixed with `cf_live_`.

````