跳轉到主要內容
GET
/
v2
/
wallet
/
{chain}
/
net-worth-summary
錢包 - 淨值摘要(批次)
curl --request GET \
  --url https://api.chainstream.io/v2/wallet/{chain}/net-worth-summary \
  --header 'Authorization: Bearer <token>'
{
  "currentTimestamp": "2025-10-30T03:33:40.980Z",
  "wallets": {
    "3bovD5jCRn7eG64jZqyEz6Zbx92mHixZSTRrWLy1Sirx": {
      "value": "1764819473.530063"
    }
  }
}

授權

Authorization
string
header
必填

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

路徑參數

chain
enum<string>
必填

支援網路列表中的鏈名稱 Supported blockchain chains

可用選項:
sol,
eth,
bsc

查詢參數

walletAddresses
string
必填

錢包地址列表,以逗號 (,) 分隔的字串。最多允許 100 個錢包地址

回應

200 - application/json

成功回應

currentTimestamp
string
必填

目前伺服器時間戳

範例:

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

wallets
object
必填

錢包地址到淨值的映射

範例:
{
"3bovD5jCRn7eG64jZqyEz6Zbx92mHixZSTRrWLy1Sirx": { "value": "1764819473.530063" }
}