GET
/
v1
/
trade
/
{chain}
/
gainers-losers
Trade - Gainers/Losers
curl --request GET \
  --url https://api-dex.chainstream.io/v1/trade/{chain}/gainers-losers \
  --header 'Authorization: Bearer <token>'
{
  "hasNext": false,
  "hasPrev": false,
  "startCursor": "<string>",
  "endCursor": "<string>",
  "total": 123,
  "data": [
    {
      "address": "FciNKwZAvSzepKH1nFEGeejzbP4k87dJiP9BAzGt2Sm3",
      "pnl": 1,
      "tradeCount": 1,
      "volume": 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
type
string
required

Specify the type of top gainers/losers. Filter for records with type equal to the specified type

Example:

"1W"

sortBy
string
required

Specify the sort field

Example:

"PnL"

sortType
string
required

Specify the sort order

Example:

"desc"

Response

200 - application/json

The response is of type object.