메인 콘텐츠로 건너뛰기
GET
/
v2
/
token
/
{chain}
/
{tokenAddress}
/
holders
/
multi
토큰 - 홀더 (다중)
curl --request GET \
  --url https://api.chainstream.io/v2/token/{chain}/{tokenAddress}/holders/multi \
  --header 'Authorization: Bearer <token>'
[
  {
    "amount": "1000000000000000000",
    "amountInUsd": "1000000000000000000",
    "percentage": "100",
    "walletAddress": "0x1234567890abcdef"
  }
]

인증

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
tokenAddress
string
필수

토큰 주소

쿼리 매개변수

walletAddresses
string
필수

쉼표(,)로 구분된 지갑 주소 목록. 최대 100개의 지갑 주소 허용

응답

200 - application/json

다중 홀더 조회

amount
string
필수

토큰 보유 수량

예시:

"1000000000000000000"

amountInUsd
string
필수

USD 기준 토큰 보유 가치

예시:

"1000000000000000000"

percentage
string
필수

총 공급 대비 보유 비율

예시:

"100"

walletAddress
string
필수

홀더 지갑 주소

예시:

"0x1234567890abcdef"