メインコンテンツへスキップ
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