<?php 
$link = "https://wowtokenprices.com/current_prices.json";

$data = file_get_contents($link);

$json = json_decode($data);

echo $json->eu->current_price;

?>
@Hellscream;