listreceivedbyaddress

Back to wallet

Wallet

Summary

List balances by receiving address.

Description

List balances by receiving address.

Arguments

  • minconf (NUM): The minimum number of confirmations before payments are included.
  • include_empty (BOOL): Whether to include addresses that haven't received any payments.
  • include_watchonly (BOOL): (DEPRECATED) No longer used
  • address_filter (STR): If present and non-empty, only return information on this address.
  • include_immature_coinbase (BOOL): Include immature coinbase transactions.

Results

  • value (ARR): No description.
  • value (OBJ): No description.
    • address (STR): The receiving address
    • amount (STR_AMOUNT): The total amount in QBT received by the address
    • confirmations (NUM): The number of confirmations of the most recent transaction included
    • label (STR): The label of the receiving address. The default label is ""
    • txids (ARR): No description.
    • txid (STR_HEX): The ids of transactions received with the address

Examples

qbit-cli listreceivedbyaddress
qbit-cli listreceivedbyaddress 6 true
qbit-cli listreceivedbyaddress 6 true true "" true
curl --user myusername --data-binary '{"jsonrpc": "2.0", "id": "curltest", "method": "listreceivedbyaddress", "params": [6, true, true]}' -H 'content-type: application/json' http://127.0.0.1:8352/
curl --user myusername --data-binary '{"jsonrpc": "2.0", "id": "curltest", "method": "listreceivedbyaddress", "params": [6, true, true, "qb1zqqqsyqcyq5rqwzqfpg9scrgwpugpzysnzs23v9ccrydpk8qarc0sjq57mw", true]}' -H 'content-type: application/json' http://127.0.0.1:8352/