> ## 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 current user

> Returns the current Plaud user's profile, membership tier, and remaining transcription seconds. **Pro license required.**



## OpenAPI

````yaml /api-reference/plaud/openapi.json get /plaud/user/me
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/user/me:
    get:
      tags:
        - User
      summary: Get current user
      description: >-
        Returns the current Plaud user's profile, membership tier, and remaining
        transcription seconds. **Pro license required.**
      operationId: getPlaudUserMe
      responses:
        '200':
          description: User profile + membership state
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserMeResponse'
        '401':
          $ref: '#/components/responses/PlaudAuthError'
components:
  schemas:
    UserMeResponse:
      type: object
      properties:
        status:
          type: integer
          description: Plaud envelope status (0 = success).
        data_user:
          type: object
          properties:
            id:
              type: string
            nickname:
              type: string
            email:
              type: string
            country:
              type: string
            membership_id:
              type: integer
            seconds_left:
              type: integer
              format: int64
              description: Remaining transcription seconds.
            seconds_total:
              type: integer
              format: int64
        data_state:
          type: object
          properties:
            is_membership:
              type: integer
            membership_type:
              type: string
            have_files:
              type: boolean
            has_transcribed:
              type: boolean
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
  responses:
    PlaudAuthError:
      description: >-
        Plaud credentials rejected (revoked/expired) — reconnect your Plaud
        account.
      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.

````