Getting followers via API

you can get the current follower count by calling

Twitch.api.get(“channels/:name/follows”).done(function(channel){ console.log(channel._total); });

1 Like