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

# Get transcript

> Returns the decoded transcript with speaker labels and millisecond timestamps. Pass `format` to also get a rendered `text` string. **Pro license required.**



## OpenAPI

````yaml /api-reference/plaud/openapi.json get /plaud/files/{id}/transcript
openapi: 3.1.0
info:
  title: Magic Meal Kits — Plaud API
  version: 1.0.0
  description: >-
    Read your Plaud voice-recorder library — recordings, transcripts, AI
    summaries, note tabs, devices, and search — through your Magic Meal Kits
    server. Backs the **Plaud (Magic Meal Kits)** Make.com app.


    Your Plaud account credentials live server-side (Secret Manager) on your
    deployment; callers only send the MMK API key. Every endpoint requires a
    **Pro** license — a Basic key is rejected with `400` and `you are not a
    magic meal kits PRO user`.
  license:
    name: Proprietary
    identifier: LicenseRef-Proprietary
servers:
  - url: https://{deployment}/api/v1
    description: Your Magic Meal Kits deployment
    variables:
      deployment:
        default: magic-meal-kits-xxxxx.run.app
        description: Your Cloud Run host (without protocol)
security:
  - ApiKeyAuth: []
tags:
  - name: User
    description: Account profile and membership.
  - name: Files
    description: List, inspect, and bundle recordings.
  - name: Content
    description: Transcripts, summaries, note tabs, and audio.
  - name: Search
    description: Full-text search across transcripts.
  - name: Devices
    description: Bound Plaud hardware.
  - name: Webhooks
    description: Polling source for new-recording triggers.
paths:
  /plaud/files/{id}/transcript:
    get:
      tags:
        - Content
      summary: Get transcript
      description: >-
        Returns the decoded transcript with speaker labels and millisecond
        timestamps. Pass `format` to also get a rendered `text` string. **Pro
        license required.**
      operationId: getPlaudTranscript
      parameters:
        - $ref: '#/components/parameters/FileId'
        - name: format
          in: query
          schema:
            type: string
            enum:
              - text
              - markdown
              - srt
              - vtt
              - json
              - plain
          description: >-
            Optional. When provided, the response adds `text` (rendered
            transcript) and `format`. Omit to get the raw `{file_id, content}`
            shape only.
      responses:
        '200':
          description: Transcript
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Transcript'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/PlaudAuthError'
        '409':
          $ref: '#/components/responses/NotReady'
components:
  parameters:
    FileId:
      name: id
      in: path
      required: true
      schema:
        type: string
      description: Plaud recording (file) ID.
  schemas:
    Transcript:
      type: object
      properties:
        file_id:
          type: string
        content:
          description: >-
            Decoded transcript payload (object or array of speaker-labeled
            segments).
        text:
          type: string
          description: Rendered transcript — present only when `format` was requested.
        format:
          type: string
          description: Echoes the requested format.
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
  responses:
    BadRequest:
      description: Invalid request (e.g. missing file id)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    PlaudAuthError:
      description: >-
        Plaud credentials rejected (revoked/expired) — reconnect your Plaud
        account.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotReady:
      description: >-
        The requested attachment is not generated yet (e.g. transcription still
        running)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: >-
        Your deployment's API key (MMK_API_KEY). Your Plaud account credentials
        are stored server-side — you do not send them.

````