我不能在Godaddy服务器上使用CURL

Needing information about the goDaddy server error, I used CURL with the following commands in PHP.

I already tested it on another hosting server and it returned me successfully.

I'm using an API for sending messages in whatsapp, everything works: locally and on another server, except on goDaddy.

            $endpoint = "https://site...";


            $curl = curl_init($endpoint);
            curl_setopt($curl, CURLOPT_SSL_VERIFYPEER , true);
            curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($curl, CURLOPT_POST, true);
            curl_setopt($curl, CURLOPT_POSTFIELDS, $dados);
            curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, true);

            $executa_api= curl_exec($curl);  
            curl_close($curl);
            $retorno= json_decode($executa_api);

do I need to authenticate something to use third-party API in godaddy?

My phpinfo():