Well, I tried to capture the URL data in php anyway: link But I can not, I tried cUrl, I tried to save the page returned, anyway, everything I tried was unsuccessful! Always returns false ...
$url = "https://api.cartolafc.globo.com/time/slug/artilheiroCoral/1";
$c = curl_init();
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
curl_setopt($c, CURLOPT_URL, $url);
curl_setopt($c, CURLOPT_FRESH_CONNECT, true);
$result = curl_exec($c);
curl_close($c);
var_dump($result);