I’m using JSON and PHP code. This code will work for you.
$opts = [
"http" => [
"header" => "Accept: application/vnd.twitchtv.v5+json"
]
];
$context = stream_context_create($opts);
$url = " https://api.twitch.tv/kraken/streams/?game=Age%20Of%20Empires%20II&client_id=xxxxxxxxxxxxx";
$json = file_get_contents($url, false, $context);
$obj = json_decode($json);
var_dump($obj);