# List of transactions since block (blockhash) Get all transactions in blocks since block [blockhash], or all transactions if omitted. Endpoint: GET /daemon/listsinceblock Version: 6.6.1 Security: ZelID ## Query parameters: - `blockhash` (string) The block hash to list transactions since Example: "000000b43fccbefdc72246275014e641d400851ab88f1b3f8ec483a770072537" - `targetconfirmations` (integer) The confirmations required, must be 1 or more Example: 50 - `includewatchonly` (boolean) Whether to include watchonly addresses Enum: true, false ## Response 200 fields (application/json): - `status` (string) Explanation of status Enum: "success", "error" - `data` (object) - `data.transactions` (array) - `data.transactions.account` (string) The account name associated with the transaction. Will be "" for the default account - `data.transactions.address` (string) The Flux address of the transaction. Not present for move transactions (category = move) - `data.transactions.category` (string) The transaction category. 'send' has negative amounts, 'receive' has positive amounts - `data.transactions.amount` (number) The amount in FLUX. This is negative for the 'send' category, and for the 'move' category for moves outbound. It is positive for the 'receive' category, and for the 'move' category for inbound funds. - `data.transactions.vout` (integer) Vout value - `data.transactions.fee` (number) The number of confirmations for the transaction. Available for 'send' and 'receive' category of transactions - `data.transactions.confirmations` (integer) The number of confirmations for the transaction. Available for 'send' and 'receive' category of transactions - `data.transactions.blockhash` (string) The block hash containing the transaction. Available for 'send' and 'receive' category of transactions - `data.transactions.blockindex` (integer) The block index containing the transaction. Available for 'send' and 'receive' category of transactions - `data.transactions.blocktime` (integer) The block time in seconds since epoch (1 Jan 1970 GMT) - `data.transactions.expiryheight` (integer) Expiry height of transaction - `data.transactions.txid` (string) The transaction id. Available for 'send' and 'receive' category of transactions - `data.transactions.walletconflicts` (array) - `data.transactions.time` (integer) The transaction time in seconds since epoch (Jan 1 1970 GMT) - `data.transactions.timereceived` (integer) The time received in seconds since epoch (Jan 1 1970 GMT) - `data.transactions.vJoinSplit` (array) - `data.transactions.vJoinSplit.vpub_old` (number) Public input value of FLUX - `data.transactions.vJoinSplit.vpub_oldZat` (integer) Public input value of FLUX in satoshis - `data.transactions.vJoinSplit.vpub_new` (number) Public output of FLUX - `data.transactions.vJoinSplit.vpub_newZat` (integer) Public output of FLUX in satoshis - `data.transactions.vJoinSplit.anchor` (string) Merkle root of note commitment tree - `data.transactions.vJoinSplit.nullifiers` (array) - `data.transactions.vJoinSplit.commitments` (array) - `data.transactions.vJoinSplit.onetimePubKey` (string) The onetime public key used to encrypt the cipertexts - `data.transactions.vJoinSplit.randomSeed` (string) The random seed - `data.transactions.vJoinSplit.macs` (array) - `data.transactions.vJoinSplit.proof` (string) The zero-knowledge proof - `data.transactions.vJoinSplit.ciphertexts` (array) - `data.transactions.size` (integer) Size in bytes - `data.lastblock` (string) The hash of the last block