Skip to main content
The Plaud group powers the Plaud (Magic Meal Kits) Make.com app. It is a facade over Plaud’s web API — mostly reads (recordings, transcripts, summaries, search) plus a set of writes (rename, trash, tag/organize, and auto transcribe + summarize). Your server holds your Plaud credentials in Secret Manager, so callers only ever send the MMK X-API-KEY header (see Authentication).
Every Plaud endpoint requires a Pro license. A Basic key is rejected with 400 and you are not a magic meal kits PRO user.

Endpoints

Every endpoint below is Pro-only.

User & system

Files

Content

Folders (tags)

AI (transcribe + summarize)

Devices & webhooks

Triggers

The Watch New Note instant trigger in the Make app is delivered by your server’s webhook orchestrator — it is not an endpoint you call. The Watch New Recordings polling trigger reads GET /plaud/files/webhook-candidates, which returns only recordings that are ready (not trashed, transcribed, and summarized).

Notes

  • Readiness. Use the is_trans / is_summary flags (on file objects) or the 409 not-ready response to skip recordings whose transcript/summary is still generating.
  • Pre-signed URLs expire. Audio URLs and summary image URLs are short-lived S3 links (~15 minutes) — fetch and use them promptly.
  • One bundle call. Prefer /files/{id}/fetch?include=transcript,summary over three separate round trips when you need multiple attachments for the same recording.
  • Reconnect on 401. A 401 means your stored Plaud credentials were rejected (revoked/expired) — reconnect your Plaud account on the Magic Meal Kits app.
Use the interactive playground on each endpoint page to try a request with your own deployment host and API key.