12

I don't want to use an existing service, like Blockchain.info or BlockExplorer.com. Is there some library out there that will let me read the blockchain programatically?

Shamoon
  • 2,849
  • 3
  • 35
  • 52

2 Answers2

6

This can be done with some degree of effort using the Bitcoin API.

v0.7 getrawtransaction gives you access to transactions even those not in your wallet.

There are other tools that you can use to build this capability as well.

  • libBitcoin
  • Armory (see Extras)
  • Bitcoin ABE
  • BitsOfProof supernode [pre-release]
Stephen Gornick
  • 27,040
  • 12
  • 67
  • 141
2

Gavin Andresen's bitcointools python scripts might have some of the functionality you are looking for.

kirian
  • 3,289
  • 1
  • 24
  • 36
  • 1
    From README: "These tools are becoming obsolete as we move away from using Berkeley DB in Bitcoin-Qt/bitcoind." – odigity Aug 05 '14 at 19:19