Twitch API Get Followers

const got = require('got');

got({
    url: 'https://api.twitch.tv/kraken/channels/115307371/follows',
    headers: {
        "Client-ID": "yourclient",
        "Accept": "application/vnd.twitchtv.v5+json",
    },
    responseType: 'json'
})
.then(resp => {
    for (var x=0;x<resp.body.follows.length;x++) {
        console.log(resp.body.follows[x].user.display_name);
    }
})
.catch(err => {
    console.log(err);
})