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

v0.1.2

Published

n8n community node for the UniRate API — currency conversion, exchange rates, historical rates, time series, and VAT rates.

Readme

n8n-nodes-unirate

This is an n8n community node. It lets you use the UniRate API in your n8n workflows for currency exchange rates, conversion, historical data, time series, and VAT rates.

UniRate offers free real-time and historical exchange rates for 170+ currencies — no credit card needed for the free tier.

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials UniRate Node UniRate Trigger Node Compatibility Resources Version history

Installation

Follow the installation guide in the n8n community-nodes documentation.

In a self-hosted n8n instance:

  1. Go to Settings → Community Nodes.
  2. Select Install.
  3. Enter n8n-nodes-unirate and confirm.

The package is also available on npm.

Credentials

You need a UniRate API key. The free tier covers latest rates, conversion, the supported-currency list, and VAT rates. The Pro tier adds historical rates and time series.

  1. Sign up at unirateapi.com.
  2. Copy your API key from the dashboard.
  3. In n8n, create a new credential of type UniRate API and paste the key.

The credential is sent as the api_key query parameter on every request. The credential test calls GET /api/currencies to confirm the key.

Operations

The package ships two nodes:

  • UniRate — action node for one-shot lookups and conversions.
  • UniRate Trigger — polling trigger that fires when a tracked currency pair's rate changes.

UniRate Node

Resources and operations:

| Resource | Operation | Endpoint | |---|---|---| | Rate | Get | GET /api/rates?from&to | | Rate | Get Many | GET /api/rates?from | | Conversion | Convert | GET /api/convert?from&to&amount | | Conversion | Convert Historical (Pro) | GET /api/historical/rates?from&to&amount&date | | Currency | Get Many | GET /api/currencies | | Historical (Pro) | Get Rate | GET /api/historical/rates?date&from&to | | Historical (Pro) | Get Time Series | GET /api/historical/timeseries?start_date&end_date&base&currencies | | Historical (Pro) | Get Limits | GET /api/historical/limits | | VAT | Get | GET /api/vat/rates?country | | VAT | Get Many | GET /api/vat/rates |

Pro endpoints return HTTP 403 on a free-tier key.

UniRate Trigger Node

Polls the UniRate API on the schedule you configure (n8n's standard trigger-schedule controls) and emits an event when the rate for a tracked pair changes.

Trigger modes:

  • On Any Change — fire when the rate differs from the previous poll.
  • On Threshold Crossed — fire only when the percent change is at least the configured threshold (e.g. 0.5 = 0.5 %).
  • On Every Poll — emit on every poll, even if the rate is unchanged.

Event payload:

{
  "from": "USD",
  "to": "EUR",
  "rate": 0.9214,
  "previousRate": 0.9180,
  "absoluteChange": 0.0034,
  "percentChange": 0.3704,
  "timestamp": "2026-04-25T08:30:00.000Z"
}

previousRate, absoluteChange, and percentChange are null on the first poll.

Example workflows

Convert an amount in a webhook:

  1. Webhook → receives { "amount": 100, "currency": "USD" }.
  2. UniRate (Conversion → Convert)from = {{$json.currency}}, to = "EUR", amount = {{$json.amount}}.
  3. Respond to Webhook{ "amount_eur": {{$json.result}} }.

Alert on FX moves:

  1. UniRate Triggerfrom = USD, to = EUR, trigger mode On Threshold Crossed, threshold 0.5, poll interval Every 15 minutes.
  2. Slack → post "USD/EUR moved {{$json.percentChange}}% to {{$json.rate}}".

Daily VAT-rate snapshot:

  1. Schedule Trigger0 6 * * *.
  2. UniRate (VAT → Get Many).
  3. Spreadsheet File → save to a dated CSV.

Compatibility

  • Tested on n8n 1.x.
  • Requires Node.js >= 20.15.

Resources

Related

UniRate ships official client libraries for nine languages — Python, Node, Swift, Java, Go, Rust, Ruby, PHP, and .NET. See the UniRate-API GitHub organisation.

Version history

0.1.0 (2026-04-25)

  • Initial release.
  • UniRate node: Rate, Conversion, Currency, Historical, VAT resources.
  • UniRate Trigger: polling trigger with any-change / threshold modes.

License

MIT