hala file_get_contents ile alabilirsin.

<?php

$res = file_get_contents("https://www.instagram.com/kullaniciadi/?__a=1");
$json = json_decode($res);
$image_url =  $json->graphql->user->profile_pic_url; // thumbnail
$image_url =  $json->graphql->user->profile_pic_url_hd; // yüksek kaliteli

?>