Get user profile-picture without login

I was using node-fetch before and data was undefined, now I switched to axios and it works out of a sudden. Thanks :slight_smile:

 axios
.get("https://api.twitch.tv/helix/users?login=Kozie1337", {
  headers: {
    "Client-Id": clientid,
    Authorization: "Bearer " + token,
  },
})
.then((res) => {
  console.log(res.data);
});