Skip to main content
GET
/
v2
/
wallet
/
{chain}
/
net-worth-summary
Wallet - Net Worth Summary (Multi)
curl --request GET \
  --url https://api.dex.chainstream.io/v2/wallet/{chain}/net-worth-summary \
  --header 'Authorization: Bearer <token>'
{
  "currentTimestamp": "2025-10-30T03:33:40.980Z",
  "wallets": {
    "3bovD5jCRn7eG64jZqyEz6Zbx92mHixZSTRrWLy1Sirx": {
      "value": "1764819473.530063"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

chain
enum<string>
required

A chain name listed in supported networks Supported blockchain chains

Available options:
sol,
eth,
bsc

Query Parameters

walletAddresses
string
required

A list of wallet addresses in string separated by commas (,). Maximum 100 address addresses allowed

Response

200 - application/json

Successful response

currentTimestamp
string
required
Example:

"2025-10-30T03:33:40.980Z"

wallets
object
required
Example:
{
"3bovD5jCRn7eG64jZqyEz6Zbx92mHixZSTRrWLy1Sirx": { "value": "1764819473.530063" }
}