How can i get balance of bitcoin address not exist in my wallet?

2

1

How can i get balance of bitcoin address not exist in my wallet ?

I try to use bitcoin-Abe but it is complicated and take seral days to full database with blockchain.

Is there exists other tools like bitcoin-Abe but easy and fast to parse blockchain, i want from parse blcokchain to get balance and transactions of bitcoin address ?

Does armory contain any facility to parse blockchain or get balance of any address and it's transactions ?

Dev777

Posted 2014-06-27T21:00:29.110

Reputation: 161

how about an online service via web request?Dennis Kriechel 2014-06-27T21:08:23.420

can you give me example of online service ?Dev777 2014-06-27T22:09:46.007

Answers

0

There are multiple online Services which can do this.

For Example Blochain.info:

http://blockchain.info/address/12sENwECeRSmTeDwyLNqwh47JistZqFmW8?format=json

There you get a field called final_balance and all transactions for this bitcoin address.

If you dont need so many information you can use this Query API:

http://blockchain.info/q/addressbalance/12sENwECeRSmTeDwyLNqwh47JistZqFmW8

Here you will get only a number as return value which represents the amout of bitcoin in satoshi for this address.

Another example is biteasy.com's REST-API:

https://api.biteasy.com/blockchain/v1/addresses/12sENwECeRSmTeDwyLNqwh47JistZqFmW8

Dennis Kriechel

Posted 2014-06-27T21:00:29.110

Reputation: 1 603

1Mentioning blockexplorer.com is simply a crime. It's old and explodes all the time and there are much better alternatives out there than this.Biteasy.com 2014-06-28T12:04:09.690

good interjection, i guess blockchain.info is the best service for this at the moment, just wanted to show that its not the only one out there, but your right, blockexplorer is probably not the best exampleDennis Kriechel 2014-06-28T12:13:43.087

Well, not everybody agrees that it's the best service but yes, it has been around for some time now.Biteasy.com 2014-06-28T12:20:29.537

Just recognized that Biteasy.com also offers such an API, I added it to my postDennis Kriechel 2014-06-28T12:27:12.567

1

If you have bitcoind running, you can get balance without using bitcoin-abe. Basically you need addrindex enabled in bitcoin. A simple script can get all transactions of a given address and then calculate the balance. You can use https://github.com/cnu1439/blockchain-utils

dark knight

Posted 2014-06-27T21:00:29.110

Reputation: 1 532

0

Your wallet implementation is programmed to compute only the balance of the addresses you own. Remember that the concept of a "balance" is really just the sum of the values of the unspent transaction outputs (UTXOs). The original client however does not have the function to perform this computation on any given address.

This means you're either stuck using 3rd-party services like Blockchain.info, or simply the more cumbersome tools like bitcoin-abe you mentioned.

Luca Matteis

Posted 2014-06-27T21:00:29.110

Reputation: 4 784

you know other tools easy rather than bitcoin-AbeDev777 2014-06-27T22:10:26.580