Why is my script not creating the correct object?

I finally got my script to not error and it logs an object to the console, but that object doesn’t show anything pertaining to my channel. What am I missing?

$(document).ready(function() {
$.getJSON('https://api.twitch.tv/kraken/streams/marcusraven86?callback=?', function(data) {
    console.log(data);
});
});

I’m fairly new to jQuery and API implementation. I just want to look at the object to decide what I want to do with it.

Nevermind.
Found it. I missed the /kraken before /streams in my original code. Not sure how I got it correct posting here and didn’t realize it. >.<

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.