💻BingX Functions

Documentation for interacting with BingX functions and API endpoints through the PENDAX Javascript SDK.

Create an Exchange Object

Before you can interact with PENDAX functions, you must first create an Exchange object. This exchange object will allow you to interact with PENDAX. You can create one or multiple, and reference them together or individually throughout your code.

Example Exchange Object Creation:

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

let bitget_exchange = createExchange({
  exchange: "bingx",
  key: "key",
  secret: "secret",
  authenticate: true,
  label: "bingx",
});

Unauthenticated Exchange Objects

If you are just calling public API endpoints on the exchange and you don't need any authentication to protected endpoints, simply create your exchange object with authenticate set to false and omit the key, secret, passphrase.

Example Unauthenticated Exchange Object:

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

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

These documents are under development and will be updated shortly with all finalized functions

All Available BingX Functions

Documentation for each category of functions is broken down into its own subpage in order to make navigating pages simpler and faster. Please use the side navigation to access these sub-pages or click on one of the links below.

BingX Common Functions

Documented PENDAX functions applicable to Bitget spot markets.

CopyTraderFund AccountSub-Account ManagenentWallet Deposits and Withdrawals

BingX Spot Market Functions

Documented PENDAX functions applicable to Bitget spot markets.

Market Data (Spot)Trades (Spot)

BingX USDT-M Futures Market Functions

Documented PENDAX functions applicable to Bitget futures markets.

Market Data (USDT-M)Trades (USDT-M)Account (USDT-M)

Bitget Coin-M Futures Market Functions

Documented PENDAX functions applicable to Bitget futures markets.

Market Data (Coin-M)Trades (Coin-M)

Last updated