Author

Topic: Ummm... (Read 687 times)

legendary
Activity: 4270
Merit: 4534
February 07, 2013, 03:46:49 PM
#4
doesnt sound like english is your native language but i think you are asking
"how can i find out how much bitcoin is received on a specific address, from a website/service"

the answer
blockchain.info

use this API
http://blockchain.info/q/getreceivedbyaddress/

it displays the results in satoshi's so you have to divide the number by 100,000,000

if your using PHP
Code:
$url = 'http://blockchain.info/q/getreceivedbyaddress/1BtCAddressYOUChooseHERE"; 

$contents = file_get_contents($url);
$Satoshi=100000000;

$contents /= $Satoshi;
echo "BTC received: ";
echo $contents;
?>


sr. member
Activity: 240
Merit: 250
February 07, 2013, 12:00:10 AM
#3
Nice thread title. Signal, meet noise.

I try.
legendary
Activity: 1064
Merit: 1001
February 06, 2013, 11:56:37 PM
#2
Nice thread title. Signal, meet noise.
sr. member
Activity: 240
Merit: 250
February 06, 2013, 11:54:59 PM
#1
where can I find a way for a website to display bitcions sent to an payment address in digits 1 BTC ?
Jump to: