Getting followers via API

You’re pulling the entire channel object, so you need to grab the followers from the output object.

Twitch.api.get("channels/:name").done(function(channel){ console.log(channel.followers); });