getrecievedbyaddress - Bitcoin
getrecievedbyaddress. Returns the total amount of Bitcoin received by a specific address, considering only transactions with a minimum number of confirmations.
getreceivedbyaddress - bitcoin [Value: 30CU]
Shows the total amount received by a specific address.
Use cases
- Track total received by an address
- Monitor incoming funds
- Analyze transaction activity per address
Constraints
- Requires a synced wallet
- Only works with confirmed transactions
Unlock Access to 50+ chains
Boost your app's speed and reliability with dRPC - get your access API key
Language
Request
Examples
curl https://bitcoin.drpc.org \
-X POST \
-H "Content-Type: application/json" \
--data '{ "jsonrpc": "1.0", "id": "curltest", "method": "getreceivedbyaddress", "params": ["bc1q09vm5lfy0j5reeulh4x5752q25uqqvz34hufdl", 6] }'
Response
200
{
"jsonrpc": "1.0",
"id": "1",
"result": 0.025
}
Request params
idinteger
jsonrpcstring
methodstring
object
addressstring
Required. The Bitcoin address for transactions.
minconfnumeric
Optional. Default is 1. Only include transactions confirmed at least this many times.
Response
200
Response params
object
idinteger
jsonrpcstring
resultnumeric
object
nnumeric
The total amount in BTC received at this address.