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

# Get note transcript

> Get the transcript associated with a note. If the note has a linked transcription record, returns it with structured segments. For older notes with only raw transcript text, returns the text with segments as null.



## OpenAPI

````yaml /openapi.json get /notes/{id}/transcript
openapi: 3.1.0
info:
  title: OpenWhispr API
  version: 1.0.0
  description: Manage notes, folders, transcriptions, and usage programmatically.
servers:
  - url: https://api.openwhispr.com/api/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /notes/{id}/transcript:
    get:
      tags:
        - Transcriptions
      summary: Get note transcript
      description: >-
        Get the transcript associated with a note. If the note has a linked
        transcription record, returns it with structured segments. For older
        notes with only raw transcript text, returns the text with segments as
        null.
      operationId: getNoteTranscript
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Note ID.
      responses:
        '200':
          description: The transcript for this note.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/NoteTranscript'
        '404':
          description: Note not found or has no transcript.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    NoteTranscript:
      type: object
      properties:
        note_id:
          type: string
          format: uuid
        transcription_id:
          type: string
          format: uuid
          nullable: true
        text:
          type: string
        word_count:
          type: integer
          nullable: true
        language:
          type: string
          nullable: true
        duration_ms:
          type: integer
          nullable: true
        provider:
          type: string
          nullable: true
        model:
          type: string
          nullable: true
        segments:
          type: array
          items:
            $ref: '#/components/schemas/TranscriptSegment'
          nullable: true
        created_at:
          type: string
          format: date-time
          nullable: true
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
    TranscriptSegment:
      type: object
      properties:
        start:
          type: number
          description: Start time in seconds.
        end:
          type: number
          description: End time in seconds.
        text:
          type: string
        speaker:
          type: string
          description: Speaker label (e.g. 'Speaker A').
        words:
          type: array
          items:
            type: object
            properties:
              word:
                type: string
              start:
                type: number
              end:
                type: number
              score:
                type: number
                description: Confidence score 0.0-1.0.
      required:
        - start
        - end
        - text
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key starting with owk_live_

````