<?php
$cURLConnection = curl_init();

curl_setopt($cURLConnection, CURLOPT_URL, 'https://a...content-available-to-author-only...i.dev/objects');
curl_setopt($cURLConnection, CURLOPT_RETURNTRANSFER, true);

$phoneList = curl_exec($cURLConnection);
echo $curlError = curl_error($cURLConnection);
curl_close($cURLConnection);

$jsonArrayResponse = json_decode($phoneList);
print_r($jsonArrayResponse);die;
?>
