bitcoind.app
CommandsGuidesContact ↗
Home/Wallet/listsinceblock
Wallet

listsinceblock

Get all transactions in blocks since block blockhash, or all transactions if omitted.

Parameters

blockhashstringoptional
List transactions since this block. If omitted, lists all.
target_confirmationsnumberoptional
Wait for enough confirmations. Default: 1
include_watchonlybooleanoptional
Include watch-only. Default: true for watch-only wallets
include_removedbooleanoptional
Include transactions removed by reorg. Default: true

Returns

objectObject with transactions array and lastblock

Code Examples

curl --user myuser --data-binary '{"jsonrpc":"1.0","id":"1","method":"listsinceblock","params":["blockhash"]}' -H 'content-type:text/plain;' http://127.0.0.1:8332/

Example Response

{
  "transactions": [
    {
      "address": "bc1q...",
      "category": "receive",
      "amount": 0.50000000,
      "confirmations": 12,
      "blockhash": "00000000000000...",
      "txid": "a1075db55d..."
    }
  ],
  "lastblock": "00000000000000..."
}
← Previous
listreceivedbylabel
Next →
lockunspent

More Wallet Commands

abandontransactioncreatewalletdumpprivkeygetbalancegetnewaddressgettransaction

bitcoind.app — Bitcoin Core RPC Reference

GuidesContact ↗