Get UTXO of transaction
GET {{baseUrl}}/v3/bitcoin/utxo/:hash/:index
1 credit per API call.
Get the UTXO of given transaction and output index. UTXO means Unspent Transaction Output, which in blockchain terminology means assets that a user
has received at a specific address and has not yet spent.
In bitcoin-like blockchains (BTC, LTC, DOGE, BCH), every transaction is built from a list of previously
unspent transactions connected to the address. If a user owns address A, and receives 10 BTC in transaction T1, they can spend
a UTXO T1 with a total value of 10 BTC in the next transaction. The user can spend multiple UTXOs from different addresses in one transaction.
If the UTXO is not spent, the data are returned, or a 404 error code is generated.
RESPONSES
status: OK
{"version":1,"height":-1,"value":30000000,"script":"76a91400ba915c3d18907b79e6cfcd8b9fdf69edc7a7db88ac","address":"R9M3aUWCcKoiqDPusJvqNkAbjffLgCqYip","coinbase":false,"hash":"53faa103e8217e1520f5149a4e8c84aeb58e55bdab11164a95e69a8ca50f8fcc","index":0}