跳轉到主要內容
GET
/
v2
/
token
/
{chain}
/
{tokenAddress}
/
transfer-total
代幣 - 轉帳總數
curl --request GET \
  --url https://api.chainstream.io/v2/token/{chain}/{tokenAddress}/transfer-total \
  --header 'Authorization: Bearer <token>'
{
  "total": 123456
}

授權

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
必填

代幣地址

查詢參數

beforeTimestamp
integer<int64>

篩選此時間戳之前的轉帳(Unix 秒級時間戳)

afterTimestamp
integer<int64>

篩選此時間戳之後的轉帳(Unix 秒級時間戳)

回應

200 - application/json

取得轉帳總數

Token transfer total count

total
integer<int64>
必填

轉帳總數

範例:

123456