All you need to do is restore the json report using file_get_contents as follows:
$json = file_get_contents('https://www.virustotal.com/api/get_url_report.json');
Then use json_decode to convert your json to a php array:
$array = json_decode($json);
To see the results:
var_dump($array);
to publish data use curl related question .
source
share