Wallet Deposits and Withdrawals

Deposit records

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

https://bingx-api.github.io/docs/#/en-us/common/wallet-api.html#Deposit+records

Function Name:

getDepositRecords()

Usage:

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

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

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

let result = await getDepositRecords(myBingxExchange);

Withdraw records

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

https://bingx-api.github.io/docs/#/en-us/common/wallet-api.html#Withdraw+records

Function Name:

Usage:

Query currency deposit and withdrawal data

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

https://bingx-api.github.io/docs/#/en-us/common/wallet-api.html#Query+currency+deposit+and+withdrawal+data

Function Name:

Usage:

Withdraw

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

https://bingx-api.github.io/docs/#/en-us/common/wallet-api.html#Withdraw

Function Name:

Usage:

Main Account Deposit Address

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

https://bingx-api.github.io/docs/#/en-us/common/wallet-api.html#Main+Account+Deposit+Address

Function Name:

Usage:

Deposit risk control records

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

https://bingx-api.github.io/docs/#/en-us/common/wallet-api.html#Deposit+risk+control+records

Function Name:

Usage:

Last updated