npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-plaud-unofficial

v0.2.0

Published

n8n community node for the unofficial Plaud API

Downloads

66

Readme

n8n-nodes-plaud-unofficial

npm version License: MIT

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)

  1. Open your n8n instance
  2. Go to SettingsCommunity Nodes
  3. Click Install a community node
  4. Enter: n8n-nodes-plaud-unofficial
  5. 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

  1. Open app.plaud.ai and log in
  2. Open your browser's Developer Tools:
    • Chrome/Edge: Press F12 or Ctrl+Shift+I (Windows) / Cmd+Option+I (Mac)
    • Firefox: Press F12 or Ctrl+Shift+I (Windows) / Cmd+Option+I (Mac)
    • Safari: Enable Developer menu in Preferences → Advanced, then Cmd+Option+I
  3. Go to the Network tab
  4. Click on any recording in the Plaud app to trigger an API request
  5. In the Network tab, look for requests to api-euc1.plaud.ai (EU) or api.plaud.ai (US)
  6. Click on a request and find the Headers section
  7. Look for Authorization: Bearer eyJ... — copy everything after Bearer (the long string starting with eyJ)
Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...
                      ↑ Copy from here (without "Bearer ")

2. Add credentials in n8n

  1. In n8n, go to SettingsCredentialsAdd Credential
  2. Search for "Plaud Unofficial API"
  3. Paste your token into the Access Token field
  4. Select your Region (EU, US, or Custom for other endpoints)
  5. Click Save

3. Use the node

  1. Add a Plaud Unofficial node to your workflow
  2. Select your saved credential
  3. Choose a resource (File, Folder, AI, Share) and operation
  4. 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 and the correct API region.

Obtaining your access token

  1. Log into the Plaud web app
  2. Open browser DevTools (F12) → Network tab
  3. Perform any action (e.g., view a recording)
  4. Find a request to api-euc1.plaud.ai (EU) or api.plaud.ai (US)
  5. Copy the Authorization header value (remove the Bearer prefix)

Setting up credentials in n8n

  1. Go to CredentialsNew Credential
  2. Search for "Plaud Unofficial API"
  3. Paste your access token
  4. 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
  5. 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

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

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