Get transactions for all addresses and wallets

+4 votes
Is it real to get tx data for all addresses? Like blockchain.info
asked Aug 3, 2017 by nezzard

1 Answer

+1 vote

If you want to retrieve transaction data en masse, you should use the getblock API command with verbose=4. That provides full details on every transaction in the provided block, which you can then analyze or store how you life.

Also, if you're only interesting in specific assets, you can subscribe to those assets, then use listassettransactions to see all transactions involving them.

answered Aug 3, 2017 by MultiChain
...