ExchangeRate-API
- Bundle ID: exchangerate_api
Get live and historical exchange rates
Requisites
To use ExchangeRate-API's services, you need to have the following credential information.
Required Credentials:
- EXCHANGERATE_API_API_KEY: API Key for authentication. Get it from https://www.exchangerate-api.com/
Plugins
Get exchange rate
Get current exchange rate from one currency to another
- Plugin ID: exchangerate_api/get_exchange_rate
Inputs
- from_currency: The currency code to convert from. Should be a 3-lettered currency code. e.g. USD, EUR, CNY, etc.
- to_currency: The currency code to convert to. Should be a 3-lettered currency code. e.g. USD, EUR, CNY, etc.
Outputs
- rate: The exchange rate from the from currency to the to currency.
Get historical exchange rate
List exchange rates of a base currency on a specific date
- Plugin ID: exchangerate_api/get_historical_exchange_rate
Inputs
- base_currency: The currency code to convert from. Should be a 3-lettered currency code. e.g. USD, EUR, CNY, etc.
- day: The day of the historical exchange rate.
- month: The month of the historical exchange rate.
- year: The year of the historical exchange rate.
Outputs
- rates: The exchange rates from the base currency to other currencies in json string format. The key is the currency code and the value is the exchange rate.
List exchange rates
List live exchange rates from one currency to all other available currencies
- Plugin ID: exchangerate_api/list_exchange_rates
Inputs
- base_currency: The currency code to convert from. Should be a 3-lettered currency code. e.g. USD, EUR, CNY, etc.
Outputs
- rates: The exchange rates from the base currency to other currencies in json string format. The key is the currency code and the value is the exchange rate.