Files
services/examples/crypto/news/node/getCryptocurrencyNews.js

13 lines
310 B
JavaScript
Executable File

const { CryptoService } = require("m3o/crypto");
// Get news related to a currency
async function getCryptocurrencyNews() {
let cryptoService = new CryptoService(process.env.MICRO_API_TOKEN);
let rsp = await cryptoService.news({
symbol: "BTCUSD",
});
console.log(rsp);
}
getCryptocurrencyNews();