메인 콘텐츠로 건너뛰기
GET
/
v2
/
wallet
/
{chain}
/
{walletAddress}
/
transfer-total
지갑 - 전송 총계
curl --request GET \
  --url https://api.chainstream.io/v2/wallet/{chain}/{walletAddress}/transfer-total \
  --header 'Authorization: Bearer <token>'
{
  "total": 125
}

인증

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

지갑 주소

쿼리 매개변수

tokenAddress
string

토큰 주소

fromTimestamp
integer<int64>

해당 타임스탬프 이후의 전송 필터링 (Unix 초 단위 타임스탬프)

toTimestamp
integer<int64>

해당 타임스탬프 이전의 전송 필터링 (Unix 초 단위 타임스탬프)

minTokenAmount
string

최소 토큰 수량 필터 (이상)

maxTokenAmount
string

최대 토큰 수량 필터 (이하)

minTokenAmountInUsd
string

최소 토큰 USD 금액 필터 (이상)

maxTokenAmountInUsd
string

최대 토큰 USD 금액 필터 (이하)

응답

200 - application/json

성공 응답

total
integer<int64>
필수

총 전송 건수

예시:

125