Skip to content

Instantly share code, notes, and snippets.

@layoutph
Created April 5, 2018 00:56
Show Gist options
  • Save layoutph/804a395112b20a96df6c986660502246 to your computer and use it in GitHub Desktop.
Save layoutph/804a395112b20a96df6c986660502246 to your computer and use it in GitHub Desktop.
Fetch BTC balance from BTC address using PHP
<?php
function getBalance($address) {
return file_get_contents('https://blockchain.info/de/q/addressbalance/'. $address);
}
$theb = getBalance('1EzwoHtiXB4iFwedPr49iywjZn2nnekhoj');
$theb = $theb / 100000000;
echo 'Address Balance: ' . $theb;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment