Binance Connector JS
    Preparing search index...

    Request parameters for ticker operation in MarketApi. TickerRequest

    interface TickerRequest {
        id?: string;
        symbol?: string;
        symbols?: string[];
        symbolStatus?: SpotWebsocketAPI.TickerSymbolStatusEnum;
        type?: SpotWebsocketAPI.TickerTypeEnum;
        windowSize?: SpotWebsocketAPI.TickerWindowSizeEnum;
    }
    Index

    Properties

    id?: string

    Client-generated request identifier.

    MarketApiTicker

    symbol?: string

    Query ticker of a single symbol

    MarketApiTicker

    symbols?: string[]

    Query ticker for multiple symbols

    MarketApiTicker

    Filters for symbols that have this tradingStatus. For a single symbol, a status mismatch returns error -1220 SYMBOL_DOES_NOT_MATCH_STATUS. For multiple or all symbols, non-matching ones are simply excluded from the response. Valid values: TRADING, HALT, BREAK

    MarketApiTicker

    Ticker type. Supported values: FULL (default) or MINI

    MarketApiTicker

    Defaults to 1d if no parameter provided.

    MarketApiTicker