im making a bot to get the price of the peso argentino. Im using a Api but im having some problems to get only the sell price.
if (command == "peso"){
request('https://www.dolarsi.com/api/api.php?type=valoresprincipales', (err, res, body) => {
const data = JSON.parse(body);
message.channel.send(body);
});

