BingX

Connect with Elite Traders, Discover Smarter Investing

Integrate the BingX API with the Email API

Setup the BingX API trigger to run a workflow which integrates with the Email API. Pipedream's integration platform allows you to integrate BingX and Email remarkably fast. Free for developers.

BingX Account GetBalance with BingX API on New Email from Email API
Email + BingX
 
Try it
BingX Account GetPositions with BingX API on New Email from Email API
Email + BingX
 
Try it
BingX Custom BracketOrder with BingX API on New Email from Email API
Email + BingX
 
Try it
BingX Custom CalculateLeveragedPosition with BingX API on New Email from Email API
Email + BingX
 
Try it
BingX Generic API Call with BingX API on New Email from Email API
Email + BingX
 
Try it
New Email from the Email API

Get a unique address where you can send emails to trigger your workflow.

 
Try it
BingX Account Get Balance with the BingX API

Get Perpetual Swap Account Asset Information See the documentation.

 
Try it
BingX Account Get Positions with the BingX API

Perpetual Swap Positions See the documentation.

 
Try it
Send Yourself an Email with the Email API

Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.

 
Try it
BingX Custom Bracket Order with the BingX API

Place bracket order. See the documentation

 
Try it
BingX Custom Calculate Leveraged Position with the BingX API

Calculate leveraged position based on entry, stop price and account balance

 
Try it

Overview of BingX

The BingX API offers a digital asset trading platform that enables users to perform crypto trades, access market data, and manage their portfolio. By leveraging this API on Pipedream, you can automate your cryptocurrency trading strategies, synchronize your trading data with other financial tools, and create real-time alerts based on market conditions.

Connect BingX

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from '@pipedream/platform';

export default defineComponent({
  props: {
    bingx: {
      type: "app",
      app: "bingx",
    }
  },
  async run({steps, $}) {
    // Requires a dynamic signature generated for each request at runtime.
    // please see conversation here: https://github.com/PipedreamHQ/pipedream/issues/4363
  },
})

Connect Email

1
2
3
4
5
6
7
8
9
export default defineComponent({
  async run({ $ }) {
    const options = {
      subject: 'Your subject here',
      text: 'Your text here'
    };
    $.send.email(options);
  },
});