GET
/
v1
/
trade
/
{chain}
/
top-traders
Trade - Top Traders
curl --request GET \
  --url https://api-dex.chainstream.io/v1/trade/{chain}/top-traders \
  --header 'Authorization: Bearer <token>'
{
  "hasNext": false,
  "hasPrev": false,
  "startCursor": "<string>",
  "endCursor": "<string>",
  "total": 123,
  "data": [
    {
      "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

A chain name listed in supported networks

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

Query Parameters

cursor
string

Pagination cursor

limit
number
default:10

Maximum number of top traders to return (max 10)

Required range: 1 <= x <= 10
direction
enum<string>
default:next

Pagination direction (next or prev)

Available options:
next,
prev
tokenAddress
string
required

Token address to query trades

Example:

"6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"

timeFrame
string
required

Time frame for filtering trades

Example:

"30m"

sortType
string
required

Sort type for trade results

Example:

"desc"

sortBy
string
required

Field to sort trades by

Example:

"volume"

Response

200 - application/json

The response is of type object.