Skip to main content

listReceivedByAddress

Overview

The 'listReceivedByAddress' method allows you to retrieve a list of all the received transactions by a specific address. This method is essential for tracking the transactions and managing the wallet effectively.

Request

wget --no-check-certificate --quiet \
--method POST \
--timeout=0 \
--header 'Content-Type: application/json' \
--header 'accept: application/json' \
--header 'X-CoinAPI-Key: 4303fb63-adec-42dc-b571-74bc2f2a5167' \
--body-data '{"jsonrpc":"2.0","id":1,"method":"listReceivedByAddress","params": [ ]}' \
'https://bitcoin-mainnet.node.coinapi.io'

Request Parameters

  • address (string): The receiving address.
  • minConfirmations (numeric): The minimum number of confirmations a transaction must have to be included in the list.
  • includeEmpty (boolean): Whether to include addresses that haven't received any payments.
  • includeWatchOnly (boolean): Only returns true if imported addresses were involved in the transaction.

Response