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.
- 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.
For self-hosted n8n installations:
npm install n8n-nodes-plaud-unofficialThen restart your n8n instance.
npm package: npmjs.com/package/n8n-nodes-plaud-unofficial
- 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(EU) orapi.plaud.ai(US) - 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 ")
- In n8n, go to Settings → Credentials → Add Credential
- Search for "Plaud Unofficial API"
- Paste your token into the Access Token field
- Select your Region (EU, US, or Custom for other endpoints)
- Click Save
- 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.
| 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) |
| Operation | Description |
|---|---|
| Get All | List all folders/tags |
| 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 |
| Operation | Description |
|---|---|
| Get Private | Get private share link for a recording |
| Get Public | Get public share link for a recording |
This node requires a Plaud API access token and the correct API region.
- 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(EU) orapi.plaud.ai(US) - Copy the
Authorizationheader value (remove theBearerprefix)
- Go to Credentials → New Credential
- Search for "Plaud Unofficial API"
- Paste your access token
- Select your Region:
- EU (Europe) —
api-euc1.plaud.ai(default) - US (United States) —
api.plaud.ai - Custom — enter your own base URL if using a different endpoint
- EU (Europe) —
- Save
Warning: Access tokens may expire. You'll need to obtain a new one when that happens.
- Tested with n8n version 1.x
- Requires Node.js 22+
# Install dependencies
npm install
# Build
npm run build
# Lint
npm run lint
# Development mode (watch)
npm run devContributions are welcome! Please see CONTRIBUTING.md for guidelines.
This is an unofficial community integration, not affiliated with or endorsed by PLAUD, Inc.
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).
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.
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.
MIT