Package Information
Available Nodes
Documentation
n8n-nodes-plaud-unofficial
This is an n8n community node for the unofficial Plaud API. It lets you interact with your Plaud voice recorder data in n8n workflows.
Plaud is a voice recording device that captures meetings, conversations, and notes with AI-powered transcription and summarization.
Note: This node uses an unofficial, reverse-engineered API. It may break if Plaud changes their API.
n8n is a fair-code licensed workflow automation platform.
Installation
Via n8n Community Nodes (Recommended)
- Open your n8n instance
- Go to Settings → Community Nodes
- Click Install a community node
- Enter:
n8n-nodes-plaud-unofficial - Click Install
See the n8n community nodes documentation for more details.
Via npm (Self-hosted)
For self-hosted n8n installations:
npm install n8n-nodes-plaud-unofficial
Then restart your n8n instance.
npm package: npmjs.com/package/n8n-nodes-plaud-unofficial
Quick Start
1. Get your Bearer token from the Plaud web app
- Open app.plaud.ai and log in
- Open your browser's Developer Tools:
- Chrome/Edge: Press
F12orCtrl+Shift+I(Windows) /Cmd+Option+I(Mac) - Firefox: Press
F12orCtrl+Shift+I(Windows) /Cmd+Option+I(Mac) - Safari: Enable Developer menu in Preferences → Advanced, then
Cmd+Option+I
- Chrome/Edge: Press
- Go to the Network tab
- Click on any recording in the Plaud app to trigger an API request
- In the Network tab, look for requests to
api-euc1.plaud.ai - Click on a request and find the Headers section
- Look for
Authorization: Bearer eyJ...— copy everything afterBearer(the long string starting witheyJ)
Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...
↑ Copy from here (without "Bearer ")
2. Add credentials in n8n
- In n8n, go to Settings → Credentials → Add Credential
- Search for "Plaud Unofficial API"
- Paste your token into the Access Token field
- Click Save
3. Use the node
- Add a Plaud Unofficial node to your workflow
- Select your saved credential
- Choose a resource (File, Folder, AI, Share) and operation
- Execute!
Tip: Start with File → Get All to list all your recordings and verify the connection works.
Operations
File
| Operation | Description |
|---|---|
| Get All | List all recordings |
| Get | Get details for a specific recording |
| Get Batch | Get details for multiple recordings by ID |
| Download | Download the audio file (MP3) |
Folder
| Operation | Description |
|---|---|
| Get All | List all folders/tags |
AI
| Operation | Description |
|---|---|
| Get Status | Check AI processing status for a recording |
| Get Notes | Get AI-generated notes for a recording |
| Get Questions | Get AI-recommended questions for a recording |
Share
| Operation | Description |
|---|---|
| Get Private | Get private share link for a recording |
| Get Public | Get public share link for a recording |
Credentials
This node requires a Plaud API access token.
Obtaining your access token
- Log into the Plaud web app
- Open browser DevTools (F12) → Network tab
- Perform any action (e.g., view a recording)
- Find a request to
api-euc1.plaud.ai - Copy the
Authorizationheader value (remove theBearerprefix)
Setting up credentials in n8n
- Go to Credentials → New Credential
- Search for "Plaud Unofficial API"
- Paste your access token
- Save
Warning: Access tokens may expire. You'll need to obtain a new one when that happens.
Compatibility
- Tested with n8n version 1.x
- Requires Node.js 22+
Development
# Install dependencies
npm install
# Build
npm run build
# Lint
npm run lint
# Development mode (watch)
npm run dev
Resources
Legal Basis
This is an unofficial community integration, not affiliated with or endorsed by PLAUD, Inc.
Interoperability Under EU Law
This project is developed and distributed under the interoperability provisions of EU Directive 2009/24/EC (the Software Directive):
- Article 5(3) permits users to observe, study, and test software to determine underlying ideas and principles
- Article 6 permits decompilation and reverse engineering when necessary to achieve interoperability with independently created software
- Article 9 renders contractual clauses restricting these rights null and void
The Court of Justice of the European Union has consistently upheld these protections, notably in SAS Institute v. World Programming (C-406/10) and Top System v. Belgian State (C-13/20).
Interoperability Intent
This node enables PLAUD users to connect their data with n8n, an independently created workflow automation platform. PLAUD already supports third-party automation through their official Zapier integration, demonstrating acceptance of interoperability use cases. This project extends similar functionality to the n8n ecosystem.
Disclaimer
This software is provided as-is for interoperability purposes. Users are responsible for compliance with PLAUD's Terms of Service and applicable laws in their jurisdiction. The maintainers make no warranty regarding account standing or service availability.
License
MIT