How to get balance history of a bitcoin address using BCOIN node

-1

Is there any way to get history balance of an address. Balance is unspent transaction outputs (UTXOs). I am using BCOIN node. Bcoin has given a API for /coin/address/:address but it is giving current balance as a result instead of history.

A. Patidar

Posted 2018-09-20T10:27:43.987

Reputation: 1

Answers

0

Looking at the docs, you're using the HTTP api incorrectly.

Try this in your terminal. Make sure to define or change the $url variable.

address0='RQKEexR9ZufYP6AKbwhzdv8iuiMFDh4sNZ';
address1='RHpAA3ZmmmWF6FW8qSfaEvh1jR1nUmVYnj';

curl $url/coin/address \
  -H 'Content-Type: application/json' \
  -X POST \
  --data '{ "addresses":[ "'$address0'", "'$address1'" ]}'

arshbot

Posted 2018-09-20T10:27:43.987

Reputation: 753

As per my understanding, it's the api to get UTXOs for multiple addresses. I want to get it for one address only. Please check this :

address='R9M3aUWCcKoiqDPusJvqNkAbjffLgCqYip'; curl $url/coin/address/$address – A. Patidar 2018-09-20T14:32:37.637

What happens when you perform the req with only that address?arshbot 2018-09-20T14:33:35.680

Also, I want to get the history of UTXOs of this addressA. Patidar 2018-09-20T14:33:48.810

It gives the current balance details of the addressA. Patidar 2018-09-20T14:35:13.973

I see the API you used now. What's your node's sync status?arshbot 2018-09-20T14:35:15.690

Please mark this question solved then :D.

For transaction history submit another question as it's different from balance checking. – arshbot 2018-09-20T14:36:05.020