UNPKG

coin-ticker

Version:

Wrapper for bitcoin exchange apis. The easiest way to add cryptocurrency market data into your application!

12 lines (10 loc) 263 B
const axios = require('axios'); module.exports = () => { return axios.get('https://api.exmo.com/v1/ticker/') .then((res) => { return Object.keys(res.data) }) .catch((err) => { console.error('Error fetching exmo pairs:', err); }); }