What's the endpoint to transfer funds between accounts.

A: There are many accounts in Binance:

  • sub account
  • master account
  • futures account
  • margin account
  • broker account
  • etc

And also different type of assets:

  • spot asset
  • margin asset
  • futures asset
  • etc
- Master Account
   | -- Spot Asset Account
   | -- Margin Asset Account
   | -- Coin-M Asset Account
   | -- USDT-M Asset Account
   |   
   | -- Sub Account
       |
       | -- Spot Asset Account
       | -- Margin Asset Account
       | -- Coin-M Asset Account
       | -- USDT-M Asset Account


What’s the endpoint to transfer different funds among them

With the master account API key, transfer asset between the master account and it’s sub accounts.

  • Master Account === ( spot assets ) ===> Sub Account

    • POST /wapi/v3/sub-account/transfer.html
    • Document
  • Sub Account === ( spot assets ) ===> Master Account

    • POST /wapi/v3/sub-account/transfer.html
    • Document
  • Sub Account === ( spot assets ) ===> Sub Account

    • POST /wapi/v3/sub-account/transfer.html
    • Document

  • Master Account === ( Coin M Futures ) ===> Sub Account

    • POST /sapi/v1/sub-account/futures/internalTransfer
    • Document
  • Sub Account === ( Coin M Futures ) ===> Master Account

    • POST /sapi/v1/sub-account/futures/internalTransfer
    • Document
  • Sub Account === ( Coin M assets ) ===> Sub Account

    • POST /sapi/v1/sub-account/futures/internalTransfer
    • Document

  • Master Account === ( USDT M Futures ) ===> Sub Account

    • POST /sapi/v1/sub-account/futures/internalTransfer
    • Document
  • Sub Account === ( USDT M Futures ) ===> Master Account

    • POST /sapi/v1/sub-account/futures/internalTransfer
    • Document
  • Sub Account === ( USDT M assets ) ===> Sub Account

    • POST /sapi/v1/sub-account/futures/internalTransfer
    • Document

With the master account API key, transfer asset between spot and other accounts under ONE sub account.

e.g. There is one sub account and the client wish to move funds:

  • Spot Account ===> USDT M Futures Account

    • POST /sapi/v1/sub-account/futures/transfer
      Document
  • USDT M Futures Account ===> Spot Account

    • POST /sapi/v1/sub-account/futures/transfer
      Document
  • Spot Account ===> COIN M Futures Account

    • POST /sapi/v1/sub-account/futures/transfer
      Document
  • COIN M Futures Account ===> Spot Account

    • POST /sapi/v1/sub-account/futures/transfer
      Document
  • USDT M Futures Account ===> COIN M Futures Account

    • Not Available
  • COIN M Futures Account ===> USDT M Futures Account

    • Not Available
  • Spot Account ===> Margin Account

    • POST /sapi/v1/sub-account/margin/transfer
      Document
  • Margin Account ===> Spot Account

    • POST /sapi/v1/sub-account/margin/transfer
      Document