How to embed last video to my channel in my website

my code for wordpress
[insert_php]
$curl = curl_init(‘https://api.twitch.tv/kraken/channels/bigbangs06/videos’);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($curl);
$i = curl_getinfo($curl);
curl_close($curl);
$videos = json_decode($result);
[/insert_php]
i see nothing