Source for blockchain dump in machine readable format

1

1

Where to get blockchain dump in machine readable format. Text files of JSON will be perfect . I found PSQL database at http://dumps.webbtc.com/bitcoin/ . Any other source?

Igor Barinov

Posted 2015-06-09T23:57:59.583

Reputation: 456

1you can use the official client to download the raw blockchain. it has a nice JSON-RPC api as well.Luca Matteis 2015-06-10T09:46:09.743

@LucaMatteis thanks, can I export raw blockchain using JSON-RPC to flat files?Igor Barinov 2015-06-10T09:55:22.413

Yes. getblock. Blocks are stored on disk in the network format which is absolutely trivial to parse yourself anyway.Anonymous 2015-06-10T13:16:44.377

No answers