Coin Traders

Retrieve trader statistics for a specific coin in a selected period. Each record represents one wallet address with buy/sell activity and estimated PnL.

Endpoint

GET /api/v1/partner/coin-traders

Parameters

Query Parameters

Name
Type
Required
Description

coin_type

string

Yes

Coin identifier (for example: 0x...::module::COIN).

period

string

Yes

Time range. One of: 30d, 7d, 3d, 1d.

limit

number

No

Number of records to return. Default: 20.

offset

number

No

Number of records to skip. Default: 0.

sort_field

string

No

Sort field. One of: tx_buy, tx_sell, total_tx, amount_buy, amount_sell, vol_buy, vol_sell, pnl. Default: pnl.

sort_direction

string

No

Sort direction: asc or desc. Default: desc.

protocol

string

No

Comma-separated protocol keys (for example: cetus-clmm,momentum-clmm).

wallet_addresses

string

No

Comma-separated wallet addresses to filter results.

Headers

Header
Required
Description

x-api-key

Yes

API key for authorization.

cURL Example

Response

Fields

Field
Type
Nullable
Description

code

number

No

HTTP status code.

message

string

No

Response message.

data

array

No

List of trader statistics.

Trader Object

Field
Type
Nullable
Description

address

string

No

Trader wallet address.

tx_buy

number

No

Number of buy transactions.

tx_sell

number

No

Number of sell transactions.

amount_buy

number

No

Total bought token amount.

amount_sell

number

No

Total sold token amount.

vol_buy

number

No

Total buy volume in USD.

vol_sell

number

No

Total sell volume in USD.

pnl

number

No

Estimated profit and loss in USD.

Success Response


See also: Environment Setup

Last updated