Binance Web3 Connector JS
    Preparing search index...

    Request parameters for getTokenTrades operation in MarketApi. GetTokenTradesRequest

    interface GetTokenTradesRequest {
        binanceChainId: string;
        cursor?: string;
        limit?: number;
        nonce?: string;
        recvWindow?: number | bigint;
        tagFilter?: GetTokenTradesTagFilterEnum;
        tokenContractAddress: string;
        walletAddressFilter?: string;
    }
    Index

    Properties

    binanceChainId: string

    Unique chain identifier.

    MarketApiGetTokenTrades

    cursor?: string

    Pagination cursor. Do not pass on the first request; pass the cursor value from the previous response to get the next page.

    MarketApiGetTokenTrades

    limit?: number

    Number of results per page, maximum 500, defaults to 100.

    MarketApiGetTokenTrades

    nonce?: string

    Unique request identifier for anti-replay; falls back to X-OC-SIGN if omitted.

    MarketApiGetTokenTrades

    recvWindow?: number | bigint

    Allowed time deviation in milliseconds (default: 5000, max: 60000).

    MarketApiGetTokenTrades

    Address tag filter, single selection only. Returns all trades with pagination when omitted; returns only the latest 100 trades for the specified tag's addresses when provided (cursor and limit are ignored). Mapping: 1=KOL, 2=Developer, 3=Smart Money, 4=Insider, 5=Sniper, 6=Bundler, 7=Whale Holder.

    MarketApiGetTokenTrades

    tokenContractAddress: string

    Token contract address.

    MarketApiGetTokenTrades

    walletAddressFilter?: string

    Filter by specific wallet addresses. Separate multiple addresses with commas. Up to 2 addresses.

    MarketApiGetTokenTrades