> ## 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.

# List transcriptions

> List transcription history with cursor pagination, newest first. Supports filtering by language or linked note.



## OpenAPI

````yaml /openapi.json get /transcriptions/list
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:
  /transcriptions/list:
    get:
      tags:
        - Transcriptions
      summary: List transcriptions
      description: >-
        List transcription history with cursor pagination, newest first.
        Supports filtering by language or linked note.
      operationId: listTranscriptions
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
          description: Number of transcriptions to return.
        - name: cursor
          in: query
          schema:
            type: string
          description: Pagination cursor from a previous response.
        - name: note_id
          in: query
          schema:
            type: string
            format: uuid
          description: Filter by linked note ID.
        - name: language
          in: query
          schema:
            type: string
          description: Filter by detected language (e.g. 'en').
        - name: include
          in: query
          schema:
            type: string
            enum:
              - segments
          description: >-
            Set to 'segments' to include speaker-attributed segment data in the
            response. Omitted by default to keep responses compact.
      responses:
        '200':
          description: Paginated transcription history.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Transcription'
                  has_more:
                    type: boolean
                  next_cursor:
                    type: string
                    nullable: true
components:
  schemas:
    Transcription:
      type: object
      properties:
        id:
          type: string
          format: uuid
        user_id:
          type: string
        text:
          type: string
        word_count:
          type: integer
        source:
          type: string
          enum:
            - cloud
            - local
        provider:
          type: string
        model:
          type: string
        language:
          type: string
        audio_duration_ms:
          type: integer
        processing_ms:
          type: integer
        segments:
          type: array
          items:
            $ref: '#/components/schemas/TranscriptSegment'
          nullable: true
          description: >-
            Speaker-attributed segments with timestamps. Null for transcriptions
            without segment data.
        created_at:
          type: string
          format: date-time
    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_

````