<?php
$json_url = "https://api.nanopool.org/v1/eth/balance/0xYOUR-ADRESS-HERE";
$json = file_get_contents($json_url);
$data = json_decode($json, TRUE);
echo '<MESSAGE>Balance: '.$data['data'] . ' ETH^</MESSAGE>';
?>