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-strike

v0.2.3

Published

n8n node for Strike API - Bitcoin payments and Lightning Network

Readme

n8n-nodes-strike

This is an n8n community node for integrating with the Strike API, enabling Bitcoin and Lightning Network payment operations within your n8n workflows.

⚠️ Important Disclaimer

This node has been AI-assisted ("vibe coded") and is not fully tested in production environments. Use at your own risk.

  • This package is provided "as-is" without any warranties or guarantees
  • Not all API endpoints have been thoroughly tested
  • Error handling may not cover all edge cases
  • Always test thoroughly in a sandbox/development environment before using in production
  • The maintainer is not responsible for any financial losses or issues arising from the use of this node

Installation

Community Nodes (Recommended)

  1. Open n8n
  2. Go to SettingsCommunity Nodes
  3. Click Install a community node
  4. Enter: n8n-nodes-strike
  5. Click Install

Manual Installation

npm install n8n-nodes-strike

Prerequisites

Configuration

Strike API Credentials

  1. In n8n, create a new Strike API credential
  2. Enter your API Key from the Strike Dashboard
  3. Select the Environment:
    • Production: For live transactions
    • Sandbox: For testing (recommended for initial setup)

Supported Resources & Operations

Account

  • Get Profile: Retrieve account profile by account ID
  • Get Profile by Handle: Retrieve account profile by Strike handle
  • Get Limits: Retrieve account limits

Balance

  • Get: Retrieve current account balances

Currency Exchange

  • Create Quote: Create a currency exchange quote
  • Get Quote: Retrieve a currency exchange quote
  • Execute Quote: Execute a currency exchange quote

Deposit

  • Create: Create a deposit
  • Get: Retrieve a deposit by ID
  • Get Many: Retrieve multiple deposits with filtering
  • Estimate Fee: Estimate deposit fee

Event

  • Get: Retrieve an event by ID
  • Get Many: Retrieve multiple events with filtering

Invoice

  • Create: Create a new invoice
  • Get: Retrieve an invoice by ID
  • Get Many: Retrieve multiple invoices with filtering
  • Create Quote: Generate a quote for an invoice
  • Cancel: Cancel an unpaid invoice

Payment

  • Get: Retrieve a payment by ID
  • Create Lightning Quote: Create a Lightning Network payment quote
  • Create Onchain Quote: Create an on-chain Bitcoin payment quote
  • Create LNURL Quote: Create a LNURL payment quote
  • Get LNURL Details: Retrieve LNURL details
  • Execute Quote: Execute a payment quote

Payment Method

  • Create Bank: Add a bank account payment method
  • Get: Retrieve a payment method by ID
  • Get Many: Retrieve all payment methods
  • Delete: Remove a payment method

Payout

  • Create: Create a payout
  • Get: Retrieve a payout by ID
  • Get Many: Retrieve multiple payouts with filtering
  • Initiate: Initiate a payout

Rates

  • Get Ticker: Retrieve exchange rate ticker for a currency pair

Features

  • Lightning Network Support: Send and receive Lightning Network payments
  • 🪙 Bitcoin On-chain: Support for on-chain Bitcoin transactions
  • 💱 Currency Exchange: Convert between BTC, USD, EUR, GBP, and more
  • 📊 Pagination Support: Handle large datasets with automatic pagination
  • 🔍 OData Filtering: Advanced filtering and sorting capabilities
  • 🔐 Secure Authentication: Bearer token authentication with environment selection

Example Workflows

Create and Monitor an Invoice

  1. Create Invoice Node

    • Resource: Invoice
    • Operation: Create
    • Amount: 10
    • Currency: USD
    • Description: Payment for services
  2. Wait for Payment (using a webhook or polling)

  3. Get Invoice Status

    • Resource: Invoice
    • Operation: Get
    • Invoice ID: {{ $json.invoiceId }}

Send Lightning Payment

  1. Create Lightning Quote

    • Resource: Payment
    • Operation: Create Lightning Quote
    • Lightning Invoice: lnbc1...
    • Source Currency: USD
  2. Execute Quote

    • Resource: Payment
    • Operation: Execute Quote
    • Payment Quote ID: {{ $json.paymentQuoteId }}

Monitor Account Events

  1. Get Events
    • Resource: Event
    • Operation: Get Many
    • Return All: true
    • Filter: eventType eq 'invoice.created'

API Documentation

For detailed API information, refer to the official Strike API documentation.

Known Limitations

  • Not all Strike API endpoints are implemented
  • Webhook support is not included (use polling as a workaround)
  • Limited error handling for specific edge cases
  • Test coverage is minimal

Contributing

Contributions are welcome! If you find bugs or want to add features:

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Test thoroughly
  5. Submit a pull request

Repository: https://git.martien.io/Martien/n8n-nodes-strike

Support

Changelog

0.2.2

  • Update Strike logo SVG with official design from PNG conversion

0.2.1

  • Fix icon build process to include PNG files
  • Fix broken image link in README

0.2.0

  • Add Event resource with get and getAll operations
  • Update node icon from SVG to PNG format
  • Add comprehensive README with usage examples
  • Update repository URLs to git.martien.io
  • Improve documentation

0.1.0 (Initial Release)

  • Support for 9 Strike API resources
  • 30+ operations across all resources
  • Production and Sandbox environment support
  • OData filtering and pagination

License

MIT License - see LICENSE file for details

Disclaimer (Again, for Emphasis)

USE THIS NODE AT YOUR OWN RISK. This is experimental software that handles financial transactions. Always:

  • Test in sandbox mode first
  • Start with small amounts
  • Monitor transactions closely
  • Keep your API keys secure
  • Review all operations before executing
  • Have a backup plan

The authors and contributors are not liable for any losses, damages, or issues that may arise from using this node.


Made with ❤️ and AI assistance | Not officially affiliated with Strike