I'm making an infographic on Bitcoin. How can I download all Bitcoin transactions to do some analysis?

2

1

I would like to do some analysis of Bitcoin transactions in the last 3 months and share my insights by preparing an infographic. What would be the best way to get all Bitcoin transactions in the past 3 months?

Eduardas

Posted 2013-11-25T22:27:34.717

Reputation: 121

Aren't bitcoin transactions anonymous? maybe you should ask some bicoin exchange market for some data.blogger 2013-11-25T22:57:29.170

@blogger: All transactions are stored publicly in the blockchain. They are not anonymous, but pseudonymous (each address is a pseudonym for a person, and therefore trackable, even though obfuscated).Murch 2013-11-25T23:23:18.027

@Edward: I saw a similar question a while back, the person was informed to look into a software called "ABE", I can't find the question right now though and don't know much about the tool myself.Murch 2013-11-25T23:26:29.827

Answers

1

A key element of the Bitcoin protocol is the block chain, which is a public transaction database. This contains most all transactions made in bitcoins and also includes information such as the sending and receiving addresses. You can find historical transaction data for the past 3 months by using a block chain explorer like ABE or Blockchain.info.

I would recommend ABE, only because it is written in Python, which will make it a lot easier to interface with for data analysis purposes.

Sam Weinberg

Posted 2013-11-25T22:27:34.717

Reputation: 821

0

You probably want to look at historic data for Mt Gox if you are looking to correlate pricing data, which is available from their public API. There is a function that returns all of the transactions that have occurred since a particular timestamp. Other exchanges may or may not expose historical data. Otherwise you need to perform blockchain analysis using blockexplorer.info or ABE if you have a local copy of the blockchain.

Mark S.

Posted 2013-11-25T22:27:34.717

Reputation: 2 415