Binance Connector JS
    Preparing search index...

    Interface TickerPriceRequest

    Request parameters for tickerPrice operation in MarketApi. TickerPriceRequest

    interface TickerPriceRequest {
        symbol?: string;
        symbols?: string[];
        symbolStatus?: SpotRestAPI.TickerPriceSymbolStatusEnum;
    }
    Index

    Properties

    symbol?: string

    Parameter symbol and symbols cannot be used in combination. If neither parameter is sent, prices for all symbols will be returned in an array.

    MarketApiTickerPrice

    symbols?: string[]

    Parameter symbol and symbols cannot be used in combination. If neither parameter is sent, prices for all symbols will be returned in an array. Examples of accepted format for the symbols parameter: ["BTCUSDT","BNBUSDT"] or %5B%22BTCUSDT%22,%22BNBUSDT%22%5D

    MarketApiTickerPrice

    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.

    MarketApiTickerPrice