메인 콘텐츠로 건너뛰기
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" }
}