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

v1.0.0

Published

n8n community node for Railsr embedded finance and multi-rail payment platform

Readme

n8n-nodes-railsr

[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 seamless integration with Railsr's Banking-as-a-Service platform. It includes 7 comprehensive resources for managing digital banking operations including ledgers, payments, beneficiaries, customers, accounts, transactions, and webhooks, enabling complete financial service automation workflows.

n8n Community Node License TypeScript Banking Payments Financial Services

Features

  • Complete Banking Operations - Full CRUD operations for accounts, customers, and beneficiaries
  • Payment Processing - Execute domestic and international payments with comprehensive tracking
  • Ledger Management - Real-time balance tracking and transaction recording
  • Transaction Monitoring - Query and analyze transaction history with advanced filtering
  • Webhook Integration - Automated event handling for real-time notifications
  • Secure Authentication - API key-based authentication with enterprise security
  • Error Handling - Comprehensive error management with detailed response parsing
  • Validation Support - Built-in data validation for all banking operations

Installation

Community Nodes (Recommended)

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

Manual Installation

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

Development Installation

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

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your Railsr API key from the dashboard | ✓ | | Environment | Production or Sandbox environment | ✓ | | Base URL | API endpoint URL (auto-configured by environment) | ✓ |

Resources & Operations

1. Ledger

| Operation | Description | |-----------|-------------| | Get Balance | Retrieve current ledger balance | | Get Ledger | Fetch ledger details and configuration | | List Entries | Get all ledger entries with filtering | | Create Entry | Add new transaction entry to ledger | | Update Entry | Modify existing ledger entry |

2. Payment

| Operation | Description | |-----------|-------------| | Create Payment | Initiate new payment transaction | | Get Payment | Retrieve payment details by ID | | List Payments | Get all payments with filtering options | | Cancel Payment | Cancel pending payment transaction | | Update Payment | Modify payment details |

3. Beneficiary

| Operation | Description | |-----------|-------------| | Create Beneficiary | Add new payment beneficiary | | Get Beneficiary | Retrieve beneficiary details | | List Beneficiaries | Get all beneficiaries with search | | Update Beneficiary | Modify beneficiary information | | Delete Beneficiary | Remove beneficiary from system |

4. Customer

| Operation | Description | |-----------|-------------| | Create Customer | Register new customer profile | | Get Customer | Retrieve customer details | | List Customers | Get all customers with filtering | | Update Customer | Modify customer information | | Delete Customer | Remove customer from system | | Verify Customer | Execute KYC verification process |

5. Account

| Operation | Description | |-----------|-------------| | Create Account | Open new customer account | | Get Account | Retrieve account details | | List Accounts | Get all accounts with filtering | | Update Account | Modify account settings | | Close Account | Close existing account | | Freeze Account | Temporarily suspend account | | Unfreeze Account | Reactivate frozen account |

6. Transaction

| Operation | Description | |-----------|-------------| | Get Transaction | Retrieve transaction details by ID | | List Transactions | Get transaction history with filtering | | Search Transactions | Advanced transaction search | | Get Statement | Generate account statement |

7. Webhook

| Operation | Description | |-----------|-------------| | Create Webhook | Register new webhook endpoint | | Get Webhook | Retrieve webhook configuration | | List Webhooks | Get all registered webhooks | | Update Webhook | Modify webhook settings | | Delete Webhook | Remove webhook registration | | Test Webhook | Send test payload to endpoint |

Usage Examples

// Create a new customer
{
  "personal_details": {
    "name": "John Doe",
    "date_of_birth": "1990-01-15",
    "email": "[email protected]",
    "phone": "+1234567890"
  },
  "address": {
    "address_line_one": "123 Main Street",
    "address_city": "New York",
    "address_postal_code": "10001",
    "address_country": "US"
  }
}
// Execute a payment
{
  "payment_type": "domestic",
  "amount": 1000.00,
  "currency": "GBP",
  "beneficiary_id": "ben_12345678",
  "reference": "Invoice payment #INV-001",
  "payment_date": "2024-01-15"
}
// Query transactions with filters
{
  "account_id": "acc_12345678",
  "from_date": "2024-01-01",
  "to_date": "2024-01-31",
  "transaction_type": "credit",
  "limit": 100
}
// Create webhook for payment notifications
{
  "url": "https://your-app.com/webhook/railsr",
  "events": ["payment.completed", "payment.failed"],
  "active": true,
  "secret": "webhook_secret_key"
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | Invalid API Key | Authentication failed with provided credentials | Verify API key in credentials configuration | | Insufficient Balance | Account balance too low for transaction | Check account balance before payment execution | | Invalid Beneficiary | Beneficiary ID not found or inactive | Verify beneficiary exists and is active | | Rate Limit Exceeded | Too many API requests in time window | Implement delays between requests | | Validation Error | Required fields missing or invalid format | Check field requirements in API documentation | | Network Timeout | Request timed out during API call | Retry with exponential backoff strategy |

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