app.get('/api/stats/lix', (req, res) => {
    api.getLixStats()
        .then(d => res.json(d))
        .catch(errorHandler.bind(res));
});