Bluefox-API is a npm library to access the Bluefox-API easily.
This is not the BlueFox API, this is only a wrapper.
Use the package manager npm to install the Bluefox-API module.
npm install bluefox-api
const Bluefox = require('bluefox-api');
const api = new Bluefox.API("API KEY");
api.getStatus().then(res => {
console.log(res);
}).catch(err => {
throw err;
});
Find all functions here
const Bluefox = require('bluefox-api);
const cryptoApi = new Bluefox.CryptoAPI("API KEY");
crpytoApi.getCurrencies().then(res => {
console.log(res);
}).catch(err => {
throw err;
});
Find all functions here
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.