Get Historical Net Worth - Wallet API
Get Historical Net Worth - Returns the historical balance of all tokens for a specified wallet address
Get Historical Net Worth - [Value: 27555CU]
Returns the historical balance of all tokens for a specified wallet address, showing token holdings at different points in time.
Per chain: GET https://lb.drpc.live/{chain}/{key}/lambda/v1/wallets/{address}/tokens-net-worth
Multichain: GET https://lb.drpc.live/lambda/{key}/v1/wallets/{address}/tokens-net-worth
Use cases
- Track historical portfolio value over time
- Analyze wallet performance and growth
Constraints
- IMPORTANT: It doesn't include DeFi changes
- Time range parameters affect response size and performance
Unlock Access to 100+ chains
Boost your app's speed and reliability with dRPC - get your access API key
Language
Request
Examples
curl --request GET \
--url https://lb.drpc.live/{chain}/{key}/lambda/v1/wallets/{address}/tokens-net-worth \
--header 'accept: application/json'Response
200
{
"data": {
"points": [
{
"timestamp": 1733142900,
"value": 4.495974120264539
},
{
"timestamp": 1733143200,
"value": 4.498005266850357
},
{
"timestamp": 1733143500,
"value": 4.4914756913229406
},
{
"timestamp": 1733143800,
"value": 4.484235837541586
}
]
}
}Path params
chainstring
Target chain (per chain requests only)
keystring
[Required] Your dRPC API key
addressstring
[Required] Wallet address
Query params
chain_idstring
Id of a chain in Wallet API API. Default: all chains
periodnetworth_period
Period of time
Request params
Response
200
Response params
object
dataobject
[Required] Wallet net-worth data.
object
pointsarray_of_objects
[Required] History of the wallet net-worth.e
object
timestampinteger
Timestamp of the poin
valuenumber
Value of the point in USD.