GET
/
v1
/
trade
/
{chain}
/
top_traders
交易 - 顶级交易者
curl --request GET \
  --url https://api-dex.chainstream.io/v1/trade/{chain}/top_traders \
  --header 'Authorization: Bearer <token>'
{
  "tokenAddress": "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN",
  "owner": "3xd4LGVWtYXLBspR6X5JWbW49NXmEehfPtX6Kqx98b4w",
  "tags": [
    "<string>"
  ],
  "type": "whale",
  "volume": 1,
  "trade": 1,
  "tradeBuy": 1,
  "tradeSell": 1,
  "volumeBuy": 1,
  "volumeSell": 1
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

chain
enum<string>
required

支持网络中列出的区块链名称

Available options:
sol,
base,
bsc,
polygon,
arbitrum,
optimism,
avalanche,
ethereum,
zksync,
sui

Query Parameters

tokenAddress
string
required

查询交易的代币地址

Example:

"6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"

timeFrame
string
required

筛选交易的时间范围

Example:

"30m"

sortType
string
required

交易结果的排序类型

Example:

"desc"

sortBy
string
required

排序交易的字段

Example:

"volume"

limit
number

返回顶级交易者的最大数量(最多10个)

Example:

10

offset
number

分页跳过的结果数量

Example:

0

Response

200 - application/json

The response is of type object.