Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
node-fixer-io-api
Advanced tools
git clone https://github.com/kenigbolo/node-api-server.git
or use ssh git clone git@github.com:kenigbolo/node-api-server.git
.Pure Javascript Node API server that connects to http://api.fixer.io
. Currently available on heroku. This api is currently used by a currency prediction rails app here on github which is hosted on a heroku site. To test out the API with post man kindly use the get request params formats as stated in fixer
This package has been published on NPM and is freely available according to the MIT license. To install via npm simply run npm install node-fixer-io-api
.
The npm package exposes a tiny utility class as well as a tiny node server. The utility class can be used to leverage making requests to the the fixer.io api. This utility will be extracted from here and made into it's own tiny package in the future. example usage of this is as follows:
const FixerIO = require('node-fixer-io').FixerIO;
const fixerUtility = new FixerIO('put-your-api-key-here');
fixerUtility.request('latest').then((response) => {
console.log(response);
});
The utility returns a resolved or rejected promise. The requirements for the request method are as follows:
request method
The request method takes two arguments
The endpoint to which the call should be made i.e At this point of writing just two are found on the fixer io api documentation. The available options at the moment are latest
,symbols
, convert
, timeseries
, fluctuation
and dates e.g. YYYY-MM-DD
. This value should be passed as a string. This is a required string however for flexibility it is not fixed to any specific list of endpoints in order to allow new endpoints to be accessible also.
The second argument taken by the request function is the query params. Kindly visit the official documentation to be sure what values are allowed but at the time of writing the allowed values are base
and symbol or symbols
, and these are only available on the latest
endpoint. An example query argument should look like this base=USD&symbols=GBP,JPY,EUR
. Please note that this type of query at the moment is not availble to the symbols
endpoint. The convert
endpoint allows for making queries such as from=GBP&to=JPY&amount=200
using params from
, to
and amount
. The timeseries
and fluctuation
endpoint currently allows queries such as start_date=2012-05-01&end_date=2012-05-27
with the available params start_date
and end_date
.
I am in no way connected to those who work at fixer.io. Project is simply a side project which I will try to maintain and expand as much as I can. At the time of this writing [2018-10-25] the fixer api requires an api token when making requests.
The idea is to integrate advanced algorithms that will give currency rates future prediction with accuracy up to 80%.
FAQs
node-api to connect to fixer.io
We found that node-fixer-io-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.