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

@satoshiengineering/n8n-nodes-btcpay

v0.1.14

Published

BtcPay integration for n8n

Readme

n8n-nodes-btcpay

This is an n8n community node. It lets you use BTCPay in your n8n workflows.

BTCPay Server is a self-hosted, open-source bitcoin payment processor. It's secure, private, censorship-resistant and free.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials Compatibility
Resources

Installation

Follow the installation guide in the n8n community nodes documentation. The package name is @satoshiengineering/n8n-nodes-btcpay.

Operations

Payment Requests

With this node, you can:

  • Create new payment requests.
  • Check the status of an existing payment request.
  • Trigger workflows when a payment request is completed (i.e., when an invoice created by the request is settled).

Credentials

To use this node, you need to generate API keys in your BTCPay Account.

Steps to Generate API Keys

  1. Navigate to /account/apikeys.

  2. Click Generate Keys and enter a label of your choice.

  3. Assign the necessary permissions based on your use case:

    • View stores (btcpay.store.canviewstoresettings) → Required for all nodes.
    • Modify store webhooks (btcpay.store.webhooks.canmodifywebhooks) → Required for the trigger node.
    • View payment requests (btcpay.store.canviewpaymentrequests) → Needed for the get operation.
    • Modify payment requests (btcpay.store.canmodifypaymentrequests) → Needed for the create operation.

Adding Credentials to n8n

  1. Once your API key is generated, locate it in the table and click Reveal under the Key column.

  2. Copy the API key and go to your n8n instance.

  3. Navigate to /home/credentials and create new credentials for BTCPay.

  4. Select BTCPay API, then:

    • Paste the API key in the API Token field.
    • Enter the host URL of your BTCPay server (including protocol and port).

Compatibility

  • Developed with n8n version 1.51.0 and BTCPay Server version 2.0.6.
  • Older versions may work but are not tested.

Resources

Contribute

For local development follow this guide for setup.

Or use the following summary below:

Want to contribute? Follow the official guide to set up your local development environment.

Alternatively, you can follow this quick setup guide:

# Install n8n globally
pnpm install n8n -g

# Clone the project and set up dependencies
cd ~/your/projects
git clone https://github.com/Satoshi-Engineering/n8n-nodes-btcpay
cd n8n-nodes-btcpay
pnpm i
pnpm build
pnpm link --global

# Start n8n to ensure the nodes directory is available
n8n start

# (Optional) If ~/.n8n/nodes is not available, open n8n in the browser and install any community module

# Link the custom node to n8n
cd ~/.n8n/nodes
pnpm link --global n8n-nodes-btcpay

# After making changes to the source code, rebuild and restart n8n
cd ~/your/projects/n8n-nodes-btcpay
pnpm build
n8n start

Testing

All new nodes and operations should include full unit tests to ensure reliability.

Your contributions are greatly appreciated! 🚀

Tip us

If you find this project useful and would like to support its development, why not send some tip love?