Fund Account

Query Assets

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

https://bingx-api.github.io/docs/#/en-us/common/account-api.html#Query+Assets

Function Name:

getAssets()

Usage:

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

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

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

let result = await getAssets(myBingxExchange);

Asset Transfer

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

https://bingx-api.github.io/docs/#/en-us/common/account-api.html#Asset+Transfer

Function Name:

Usage:

Asset transfer records

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

https://bingx-api.github.io/docs/#/en-us/common/account-api.html#Asset+transfer+records

Function Name:

Usage:

Main Accoun internal transfer

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

https://bingx-api.github.io/docs/#/en-us/common/account-api.html#Main+Accoun+internal+transfer

Function Name:

Usage:

Main account internal transfer records

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

https://bingx-api.github.io/docs/#/en-us/common/account-api.html#Main+account+internal+transfer+records

Function Name:

Usage:

Query Assets

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

https://bingx-api.github.io/docs/#/en-us/spot/account-api.html#Query+Assets

Function Name:

Usage:

Asset Transfer

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

https://bingx-api.github.io/docs/#/en-us/spot/account-api.html#Asset+Transfer

Function Name:

Usage:

Asset transfer records

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

https://bingx-api.github.io/docs/#/en-us/spot/account-api.html#Asset+transfer+records

Function Name:

Usage:

Last updated