MonoBank icon

MonoBank

Interact with Monobank API

Overview

This node interacts with the Monobank API to retrieve various types of banking information. Specifically, for the 'Get Currency Rates' operation, it fetches the current public currency exchange rates provided by Monobank. This is useful for applications that need up-to-date currency conversion data, such as financial dashboards, currency converters, or automated trading systems.

Use Case Examples

  1. A financial app that displays the latest currency exchange rates to users.
  2. An automation workflow that updates currency rates in a database daily for reporting purposes.

Output

JSON

  • ``
    • currencyCodeA - The numeric code of the source currency.
    • currencyCodeB - The numeric code of the target currency.
    • date - The timestamp of the currency rate data.
    • rateBuy - The buying rate of the currency.
    • rateSell - The selling rate of the currency.
    • rateCross - The cross rate of the currency, if available.

Dependencies

  • Monobank API

Troubleshooting

  • Ensure that no API token is required for the 'Get Currency Rates' operation, as it uses public endpoints. If an error occurs, check the network connection and Monobank API status.
  • For other operations requiring authentication, a valid API token must be provided; otherwise, the node will throw an error indicating the token is missing.
  • Error messages from the API are propagated and include descriptions from the Monobank API response, which can help diagnose issues such as invalid parameters or rate limits.

Links

Discussion