<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_ENCODING, "gzip");
curl_setopt($ch, CURLOPT_URL,"https://bulten.nesine.com/api/bulten/getprebultenfull");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close ($ch);
echo $response;
veya
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"https://bulten.nesine.com/api/bulten/getprebultenfull");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close ($ch);
$json = gzdecode($response);
echo $json;