this.coinService.getById(req.params.id)
        .then((coins) => {
            res.status(200).send(coins);   
        }).catch((err) => console.log(err.message));