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

@ukewea/n8n-nodes-bitopro-asset-worth

v0.1.4

Published

Get your net worth of assets on BitoPro in TWD currency.

Downloads

29

Readme

BitoPro Asset Worth Node for n8n

This n8n node uses your BitoPro account to:

  1. Fetch your current balances.
  2. Convert each balance to TWD.
  3. Return a full breakdown of each asset’s TWD value plus the total.

Installation (via Community Nodes)

  1. Open n8n.

  2. Navigate to Settings > Community Nodes.

  3. In Install New Package, type or paste the exact package name for this node.

    • For example, if your package is published to npm as n8n-nodes-bitopro-asset-worth, you’d enter:

      n8n-nodes-bitopro-asset-worth
  4. Click Install.

  5. When prompted, confirm the installation. n8n will fetch the package from npm, install it, and add the node(s) to your node palette.

Credential Setup

  1. In n8n, go to Settings > Credentials.
  2. Click New, then select BitoPro API (provided by this package).
  3. Enter:
    • Email: The email address linked to your BitoPro account.
    • API Key: Your BitoPro API key (created in your BitoPro dashboard).
    • API Secret: Your BitoPro secret key.
  4. Click Save.

Where to Get Your BitoPro API Key

  • Log in to your BitoPro account.
  • Go to API Management, create a new key or edit an existing one.
  • Make sure it has Read Balances permission.
  • Copy your API Key and Secret for use in n8n.

Using the BitoPro Asset Worth Node

  1. Create a New Workflow or open an existing one.
  2. In the Nodes panel, search for BitoPro Asset Worth. Drag it into your workflow.
  3. Open the node’s settings, and under Credentials, select BitoPro API from the dropdown.
  4. Execute the node. This will:
    • Fetch all balances from BitoPro (private endpoint).
    • Filter out assets with zero balances.
    • For each non-zero currency, retrieve the current TWD price from BitoPro’s public ticker endpoint.
    • Return a breakdown of each asset’s TWD value and a total field representing your portfolio in TWD.

Sample Output

{
  "assets": [
    { "currency": "BTC", "value": 100000.12 },
    { "currency": "ETH", "value": 51230.87 },
    { "currency": "TWD", "value": 12345.0 }
  ],
  "total": 163576.0
}

Contributing

  • Issues or Requests: Open an issue or submit a pull request.
  • License: MIT.