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

@velocity-bpa/n8n-nodes-spreedly

v1.0.0

Published

n8n community node for Spreedly payment processing platform

Downloads

148

Readme

n8n-nodes-spreedly

[Velocity BPA Licensing Notice]

This n8n node is licensed under the Business Source License 1.1 (BSL 1.1).

Use of this node by for-profit organizations in production environments requires a commercial license from Velocity BPA.

For licensing information, visit https://velobpa.com/licensing or contact [email protected].

This n8n community node provides comprehensive integration with Spreedly's secure payment orchestration platform. With 5 core resources including PaymentMethod, Gateway, Transaction, Receiver, and Certificate, it enables secure payment processing, gateway management, and PCI-compliant transaction handling within your n8n workflows.

n8n Community Node License TypeScript PCI Compliant Payment Processing Gateway Management

Features

  • Secure Payment Processing - Process payments across multiple gateways with PCI-compliant tokenization
  • Gateway Management - Configure and manage multiple payment gateways from a single interface
  • Transaction Monitoring - Track, verify, and manage payment transactions with detailed reporting
  • Certificate Handling - Manage SSL certificates and security credentials for payment processing
  • Receiver Management - Handle payment receivers and distribution configurations
  • Multi-Gateway Support - Integrate with 100+ payment gateways through Spreedly's unified API
  • Tokenization & Vault - Securely store payment methods using Spreedly's PCI-compliant vault
  • Real-time Webhooks - Process payment events and notifications in real-time

Installation

Community Nodes (Recommended)

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

Manual Installation

cd ~/.n8n
npm install n8n-nodes-spreedly

Development Installation

git clone https://github.com/Velocity-BPA/n8n-nodes-spreedly.git
cd n8n-nodes-spreedly
npm install
npm run build
mkdir -p ~/.n8n/custom
ln -s $(pwd) ~/.n8n/custom/n8n-nodes-spreedly
n8n start

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | Environment Key | Your Spreedly environment key | ✓ | | Access Secret | Your Spreedly access secret | ✓ | | Environment | Spreedly environment (sandbox/production) | ✓ |

Resources & Operations

1. PaymentMethod

| Operation | Description | |-----------|-------------| | Create | Create a new payment method with card or bank details | | Get | Retrieve payment method details by token | | List | List all payment methods in the environment | | Update | Update payment method information | | Delete | Remove a payment method from the vault | | Verify | Verify payment method validity |

2. Gateway

| Operation | Description | |-----------|-------------| | Create | Add a new payment gateway configuration | | Get | Retrieve gateway details and status | | List | List all configured gateways | | Update | Update gateway configuration and credentials | | Delete | Remove gateway configuration | | Test | Test gateway connection and credentials |

3. Transaction

| Operation | Description | |-----------|-------------| | Purchase | Process a purchase transaction | | Authorize | Authorize a payment without capturing | | Capture | Capture a previously authorized payment | | Void | Void an authorized transaction | | Refund | Refund a completed transaction | | Get | Retrieve transaction details | | List | List transactions with filtering options |

4. Receiver

| Operation | Description | |-----------|-------------| | Create | Create a new payment receiver | | Get | Retrieve receiver configuration | | List | List all payment receivers | | Update | Update receiver settings | | Delete | Remove a payment receiver | | Deliver | Deliver payment to receiver |

5. Certificate

| Operation | Description | |-----------|-------------| | Upload | Upload SSL certificate for secure processing | | Get | Retrieve certificate details | | List | List all certificates | | Update | Update certificate information | | Delete | Remove certificate | | Verify | Verify certificate validity |

Usage Examples

// Process a credit card payment
{
  "payment_method_token": "{{$node['Create Payment Method'].json['payment_method']['token']}}",
  "amount": 2500,
  "currency_code": "USD",
  "gateway_token": "{{$node['Get Gateway'].json['gateway']['token']}}",
  "order_id": "ORDER-123"
}
// Create a payment method with credit card
{
  "credit_card": {
    "number": "4111111111111111",
    "verification_value": "123",
    "month": "12",
    "year": "2025",
    "first_name": "John",
    "last_name": "Doe"
  },
  "email": "[email protected]"
}
// Configure a Stripe gateway
{
  "gateway_type": "stripe",
  "login": "sk_test_123456789",
  "password": "",
  "server": "https://api.stripe.com",
  "test": true
}
// List transactions with date filter
{
  "since_token": "",
  "count": 20,
  "order": "desc",
  "created_at": "2024-01-01T00:00:00Z"
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | Authentication Failed | Invalid API credentials | Verify environment key and access secret | | Payment Method Invalid | Card details are incorrect | Check card number, CVV, and expiration date | | Gateway Error | Payment gateway rejected transaction | Review gateway configuration and test credentials | | Insufficient Funds | Customer's account lacks funds | Request alternative payment method | | Transaction Not Found | Invalid transaction token | Verify transaction token and permissions | | Rate Limit Exceeded | Too many API requests | Implement exponential backoff retry logic |

Development

npm install
npm run build
npm test
npm run lint
npm run dev

Author

Velocity BPA

Licensing

This n8n community node is licensed under the Business Source License 1.1.

Free Use

Permitted for personal, educational, research, and internal business use.

Commercial Use

Use of this node within any SaaS, PaaS, hosted platform, managed service, or paid automation offering requires a commercial license.

For licensing inquiries: [email protected]

See LICENSE, COMMERCIAL_LICENSE.md, and LICENSING_FAQ.md for details.

Contributing

Contributions are welcome! Please ensure:

  1. Code follows existing style conventions
  2. All tests pass (npm test)
  3. Linting passes (npm run lint)
  4. Documentation is updated for new features
  5. Commit messages are descriptive

Support