Is a simple module that provides exchange rates from https://apiseeds.com/ directly into your js file in JSON format.
Is a simple module that provides exchange rates from https://apiseeds.com/ directly into your js file in JSON format.
# Local installation
npm install -s apiseeds-exchange-rate
# Global installation
npm install -g apiseeds-exchange-rate
convert
'use strict';
var exchange = require("apiseeds-exchange-rate");
const apikey = 'YOUR-API-KEY'; // Get it here => https://apiseeds.com/
exchange.convert(apikey,"BTC","USD",function(response,headers){
console.log("Header", headers);
console.log("Response",response);
});
currencies
Return supported currencies
'use strict';
var exchange = require("apiseeds-exchange-rate");
const apikey = 'YOUR-API-KEY'; // Get it here => https://apiseeds.com/
exchange.currencies(apikey,function(response,headers){
console.log("Header", headers);
console.log("Response",response);
});
Rate limit and credits are in the header response