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

v0.8.6

Published

Monobank API node for n8n

Downloads

17

Readme

n8n-nodes-monobank

A community node for n8n to integrate with the Monobank API. Retrieve client information, accounts, jars, statements, currency rates, and bank sync data with ease.

✨ Features

  • 🏦 Complete Monobank Integration - Access all major API endpoints for individuals
  • 🔐 Secure Authentication - Built-in credential management
  • 📊 Rich Data Access - Get statements, accounts, jars, and currency rates
  • 🚀 Easy Setup - Simple installation and configuration
  • 🌍 Public & Private APIs - Support for both authenticated and public endpoints

📦 Installation

npm install n8n-nodes-monobank

📋 Prerequisites

  • n8n: Version 1.108.0 or higher
  • Monobank API Token: Required for private operations

🚀 Usage

1️⃣ Add the Node

Add the MonoBank node to your workflow in n8n.

2️⃣ Configure Credentials

  • For Private Operations: Create a "MonoBank API" credential with your token from the Monobank API cabinet
  • For Public Operations: No credentials required (Currency Rates, Bank Sync)

3️⃣ Select Operation

Choose from available operations based on your needs.

4️⃣ Configure Parameters

For Get Statement operations:

  • Account ID: Use account ID from Get Accounts or 0 for default account
  • From Date: Start date (e.g., 2025-09-01)
  • To Date: End date (optional, e.g., 2025-09-17)

5️⃣ Execute

Run the node and process the response data.

⚠️ Rate Limit Notice: Monobank API has rate limits (1 request per 60 seconds for /personal/* endpoints)

🛠️ Available Operations

| Operation | Description | Authentication | Endpoint | |-----------|-------------|----------------|----------| | Get Client Info | Retrieve full client details (clientId, name, permissions, accounts, jars, managedClients) | ✅ Required | /personal/client-info | | Get Accounts | Retrieve list of client accounts | ✅ Required | /personal/client-info | | Get Jars | Retrieve list of jars (savings pots) | ✅ Required | /personal/client-info | | Get Managed Accounts | Retrieve list of managed accounts | ✅ Required | /personal/client-info | | Get Statement | Retrieve account statement for specified period | ✅ Required | /personal/statement/{accountId}/{from}/{to} | | Get Currency Rates | Retrieve current currency exchange rates | ❌ Public | /bank/currency | | Get Bank Sync | Retrieve bank synchronization keys | ❌ Public | /bank/sync |

💡 Example Workflows

Basic Account Information

  1. Use Get Client Info to retrieve all client data
  2. Process the response to extract specific information
  3. Use in subsequent nodes for further processing

Statement Analysis

  1. Use Get Accounts to get available accounts
  2. Use Get Statement with specific account ID and date range
  3. Analyze transactions and generate reports

Currency Monitoring

  1. Use Get Currency Rates to fetch current rates
  2. Set up periodic execution to monitor changes
  3. Send notifications when rates meet specific criteria

🤝 Support the Developer

If you find this node useful, consider supporting its development to keep it maintained and updated! Your contributions help cover coffee and coding time. ☕

Every little bit helps, and thank you for your support! 🙏

📄 License

MIT - See LICENSE file for details.

🆘 Support & Community

🏗️ Development

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Building from Source

git clone https://github.com/zblaze/n8n-nodes-monobank.git
cd n8n-nodes-monobank
npm install
npm run build