coin-ticker
Version:
Wrapper for bitcoin exchange apis. The easiest way to add cryptocurrency market data into your application!
15 lines (13 loc) • 410 B
JavaScript
const axios = require('axios');
module.exports = () => {
return axios.get('https://bittrex.com/api/v1.1/public/getmarkets')
.then((res) => {
return res.data.result.map((market) => {
const { MarketCurrency, BaseCurrency } = market;
return `${MarketCurrency}_${BaseCurrency}`
})
})
.catch((err) => {
console.error('Error fetching bittrex pairs:', err);
});
}