Thanks for the hint! I can finally see some data. I think the API docs could use a more noob-friendly example.
Here’s a very simple code I came up with to get the names of the top 8 streamers for Hearthstone:
$(document).ready(function($) {
$.getJSON('https://api.twitch.tv/kraken/streams?game=Hearthstone:+Heroes+of+Warcraft&limit=8&callback=?', function(data) {
for (var i = 0; i < data.streams.length; i++) {
console.log(data.streams[i].channel.name);
}
});
}