Closed dykstranet closed 2 years ago
Hi, is this pull request useful for you? https://github.com/janoside/btc-rpc-explorer/pull/434
The input amounts and addresses are included in that API response.
@dykstranet PR #434 that @pointbiz referenced has been merged and is now live on bitcoinexplorer.org. Does that meet your needs?
@dykstranet Happy to re-open this if needed.
Excellent @janoside . Good stuff! Thank you.
I am totally in @dykstranet usecase.
Excuse me if I dont understand correctly but how #434 solve his issue ?
/tx/:id
needs a transaction id and returns inputs / outputs related to 1 transaction.
I can't see the /address
eager loading transactions + respective inputs / outputs
ex: I did integrate blockcypher and here how it looks like https://api.blockcypher.com/v1/btc/test3/addrs/tb1qqmw2g6tghrcqdgeas2eawpcpyr537xc0ukf222/full?limit=50&unspentOnly=true&includeScript=true
Thanks for this great tool. It's very useful. I'm trying to do something new and can't see an easy way.
Describe the new feature or enhancement I'd like to output transaction data for an address in CSV or JSON format.
Output similar to this, which used to be available from blockchain.info
I posted this question to stackexchange here.
I already tried the REST API
/api/address/<ADDRESS>
and it returns the txids but I have to do a separate call to get info on each txids. Output/api/tx/<txid>
is too raw, in hex format.Thanks in advance for any guidance or fix.