Market Data (Spot)

Spot trading symbols

Please refer to the official BingX API Docs for the Required parameters.

https://bingx-api.github.io/docs/#/en-us/spot/market-api.html#Spot+trading+symbols

Function Name:

getTradingSymbolsSpot()

Usage:

import { createExchange } from "./exchanges/exchange.js";

   let myBingxExchange  = createExchange({
      exchange: "bingx",
      authenticate: "false",
      label: "bingx"
  });

async function getTradingSymbolsSpot(exchange, options) {
    try {
        let result = await exchange.getTradingSymbolsSpot(options);
        console.log(result);
    } catch (error) {
        console.log(error.message);
    }
}

let result = await getTradingSymbolsSpot(myBingxExchange);

Recent Trades List

Please refer to the official BingX API Docs for the Required parameters.

https://bingx-api.github.io/docs/#/en-us/spot/market-api.html#Recent+Trades+List

Function Name:

Usage:

Order Book

Please refer to the official BingX API Docs for the Required parameters.

https://bingx-api.github.io/docs/#/en-us/spot/market-api.html#Order+Book

Function Name:

Usage:

Kline/Candlestick Data

Please refer to the official BingX API Docs for the Required parameters.

https://bingx-api.github.io/docs/#/en-us/spot/market-api.html#Kline/Candlestick+Data

Function Name:

Usage:

24hr Ticker Price Change Statistics

Please refer to the official BingX API Docs for the Required parameters.

https://bingx-api.github.io/docs/#/en-us/spot/market-api.html#24hr+Ticker+Price+Change+Statistics

Function Name:

Usage:

Order Book aggregation

Please refer to the official BingX API Docs for the Required parameters.

https://bingx-api.github.io/docs/#/en-us/spot/market-api.html#Order+Book+aggregation

Function Name:

Usage:

Symbol Price Ticker

Please refer to the official BingX API Docs for the Required parameters.

https://bingx-api.github.io/docs/#/en-us/spot/market-api.html#Symbol+Price+Ticker

Function Name:

Usage:

Symbol Order Book Ticker

Please refer to the official BingX API Docs for the Required parameters.

https://bingx-api.github.io/docs/#/en-us/spot/market-api.html#Symbol+Order+Book+Ticker

Function Name:

Usage:

Historical K-line

Please refer to the official BingX API Docs for the Required parameters.

https://bingx-api.github.io/docs/#/en-us/spot/market-api.html#Historical+K-line

Function Name:

Usage:

Old Trade Lookup

Please refer to the official BingX API Docs for the Required parameters.

https://bingx-api.github.io/docs/#/en-us/spot/market-api.html#Old+Trade+Lookup

Function Name:

Usage:

Last updated