Ninjastic
Home
Search
Users
Boards
Addresses
Ctrl + K
Toggle theme
Open menu
Post
Edited versions
Quotes to this post
Post
14903327
Topic
1475178
Board
Project Development
Re: show balance from a btc address
by
esotericizm
on
19/05/2016, 22:00:04 UTC
if using jquery you could also do
Code:
var addr = "15urYnyeJe3gwbGJ74wcX89Tz7ZtsFDVew";
$.getJSON('https://insight.bitpay.com/api/addr/' + addr + '/balance', function(balance){
$('#balance').html(balance / 100000000);
});