Wordpress-Plugin Twitch Stream Status with outdated API

I covered the correct URLs/calls above ^^

<?php if( get_theme_mod('sst_channel_name') != '') { 
        
        $url="https://api.twitch.tv/helix/streams?user_login=".get_theme_mod('sst_channel_name');
        
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL,$url);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array(
            'Client-ID: ls2awgx5gfg9m1q6iopdqb1b7d0y6a'
        ));
        $result=curl_exec($ch);
        $array1=json_decode($result, true);