Multiple errors in console when trying to just console log a users stream info

This is the call I’m making (obviously “my client id is my ID”) I was previously trying to run it through calling forth a username from the database in a ERB file, but I swapped to just a JS file to try and get any call to work. Could it be how i specified my redirect?
$(document).ready(function(){
$.ajax({
type:“GET”,
url:“https://api.twitch.tv/kraken/streams/juicetrades
headers:{
“Client-ID”: “my client id”
},
success: function(data1){
console.log(data1)
}
}

})
})