Php ile basit şekilde örnek amaçlı yaptım kullanabilirsiniz.
<?php
$profile = 'r10net';
$response = file_get_contents('http://www.instagram.com/'.$profile.'/?__a=1');
$response = json_decode($response);
if ($response && isset($response->graphql->user->full_name)) {
$response = ['status' => true, 'msg' => $response->graphql->user->full_name];
} else {
$response = ['status' => false, 'msg' => 'Kullanıcı adı boşta'];
}
exit(json_encode($response, JSON_PRETTY_PRINT));