Can Binance Api be used for bulk ordering?(Binance Api可以批量下单吗?)

Hello everyone! I am trying to use API trading and have a strategy that requires bulk ordering. Currently, the efficiency is relatively low as orders are placed one by one. I hope to be able to place bulk orders by calling an interface that can submit multiple orders, preferably with different transaction pairs. Do you have such an API interface?

大家好!我正在尝试用api交易,有一个策略需要批量下单,目前是一个一个订单下的,效率比较低,现在希望能批量下单,就是调用一个接口,能够提交多个订单,最好多个订单还可以是不同的交易对,请问有这样的api接口吗?

Hi @Fei_Chen,

Currently, Binance Spot API does not have a dedicated endpoint for submitting multiple orders in a single request. Orders must be placed one at a time.

However, if you’re working with Futures API, you can use the batch order feature:

  • /fapi/v1/batchOrders for USDT-M Futures
  • /dapi/v1/batchOrders for COIN-M Futures
  • /eapi/v1/batchOrders for Options

These endpoints allow you to submit multiple orders at once, improving efficiency.

For Spot trading, you can optimize order placement by:

  • Using WebSocket APIs to reduce latency.
  • Placing orders asynchronously to improve execution speed.
1 Like

Okay, I understand. Thank you!

好的,我明白了,谢谢你!