You are incorrectly addressing the data in the PHP object created from the JSON String
$json = file_get_contents('https://...link/here..');
$obj = json_decode($json);
echo $obj->data[0]->Position;
Or if there are more occurances
foreach ( $obj->data as $idx=>$data) {
echo $data->Position;
}