跳转到主要内容
GET
/
v2
/
wallet
/
{chain}
/
net-worth-summary
钱包 - 净值摘要(批量)
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"
    }
  }
}

授权

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" }
}