api.coinmarketcap
v1.0.1
Published
JS Api for coinmarketcap (BY default polygon-ecosystem: crypto) It displays the latest prices of coins accross polygon network.
Downloads
5
Readme
api.coinmarketcap
JS Api for coinmarketcap (BY default polygon-ecosystem: crypto) It displays the latest prices of coins accross polygon network.
Installation
npm install api.coinmarketcap
Usage
const ApiCoinMarketCap = require('api.coinmarketcap');
( async () => {
let response = await ApiCoinMarketCap.getMarketPrices();
let cryptoList = response.cryptoCurrencyList;
console.log(cryptoList);
})();