I'm trying to get a transaction info using

bitcoind gettransaction \
  9962d5c704ec27243364cbe9d384808feeac1c15c35ac790dffd1e929829b271

but I'm receiving

error: {"code":-5,"message":"Invalid or non-wallet transaction id"}

How to see a transaction using bitcoin API?

link|improve this question
feedback

2 Answers

As the error said, you are trying to see a transaction which is not part of your wallet. Bitcoind only allows you to explore transactions that are related to your wallet.

If you want to explore "foreign" transactions, you should use other tools like http://blockexplorer.com/

link|improve this answer
I don't want to build dependencies on third party services on my server. Is there other possibility? – asv Jan 5 at 16:21
maybe the code of blockexplorer is available somewhere. Or something similar. But bitcoind doesn't do that. – ploum Jan 5 at 19:23
feedback
bitcoind listtransactions

See here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.