You might want to use paid API (such as
https://blockchair.com/api) which don't have such limit.
If you have fixed list of addresses, where you want to see transaction related to those address, you could run Bitcoin Core (and enable transaction indexing/
txindex).
You only need to add list of addresses to watch only addresses, then use this command to get total confirmation of a transaction.
gettransaction [your_tx_id]
Blockchair api too much expensive,
From $250 / mo for only 25000 req/day, But i need min 2req/sec
Have you tried Blockchain or BTC.com API? They don't give you the transaction confirmation count but you can calculate it using the blockcount:
Blockcount - The block your transaction was included in (
block height) + 1
631516 - 631509 + 1 = 8 confirmations
on blockchain api
documentation i see this
Please limit your queries to a maximum of 1 every 10 seconds.,
and on btc.com api getting this while browsing the page
once every second from my browser,(a file is being downloaded and in the file have this)
Don't abuse the API. Please contact webmaster@btc.com
Have you tried Blockchain or BTC.com API? They don't give you the transaction confirmation count but you can calculate it using the blockcount:
Blockcount - The block your transaction was included in (
block height) + 1
631516 - 631509 + 1 = 8 confirmations
Blockcount - The block your transaction was included in (
block height) + 1
This Helped Too Much Thanks,,,,, i can now store block_height from starting and just call one req to get current block and do the easy math......
Thank You Soooooo Much
Have you tried Blockchain or BTC.com API? They don't give you the transaction confirmation count but you can calculate it using the blockcount:
Blockcount - The block your transaction was included in (
block height) + 1
631516 - 631509 + 1 = 8 confirmations
Can u please tell me usually after how much time currentblock count increases? an estimate pls[moderator's note: consecutive posts merged]