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

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

Available options:
sol,
bsc,
eth

Query Parameters

walletAddresses
string
required

A list of wallet addresses in string separated by commas (,)

Example:

"5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1,WLHv2UAZm6z4KyaaELi5pjdbJh6RESMva1Rnn8pJVVh"

Response

200 - application/json
currentTimestamp
string
required

Current server timestamp (ISO 8601)

Example:

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

wallets
object
required

Map of wallet addresses to their net worth values

Example:
{
"5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1": { "value": "1764819473.530063" },
"WLHv2UAZm6z4KyaaELi5pjdbJh6RESMva1Rnn8pJVVh": { "value": "3508619230.707581" }
}