3
Using the blockchain.info API, how can I check the transactions from one address to another, including the number of confirmations?
Clarification: I have one address let us say. I want to programmatically check new transactions, without running a wallet and a full node on my computer. So my address is fixed. The sender address is also fixed. So, given 2 addresses, get all the transactions from one to the other. And ideally including the number of confirmations.
Can you clarify, are you just looking for all the TxIDs? UTXOs only? Need it be Blockchain.info? – Wizard Of Ozzie – 2015-09-10T03:39:41.200
Additional point to clarify, there is no from address, so you don't have an easy way of looking for transactions from one address to another, which is how I understand the question. – Drazisil – 2015-09-10T05:22:19.830
@Drazisil That's right; the easiest way I'd know is to get the TxIDs for from and to, Txs_from and Txs_to, respectively. Then find the intersection of these two TxID sets – Wizard Of Ozzie – 2015-09-10T13:49:25.490