Skip to main content

Query Sub Account Transfer History(Futures)

Query Sub Account Transfer History(FUTURES)

GET /sapi/v1/broker/transfer/futures

Parameters:

NameTypeMandatoryDescription
subAccountIdSTRINGYES
futuresTypeLONGYES1:USDT Futures,2: COIN Futures
clientTranIdSTRINGNO
startTimeLONGNOdefault 30 days records
endTimeLONGNOdefault 30 days records
pageINTNOdefault 1
limitINTNOdefault 50, max 500
recvWindowLONGNO
timestampLONGYES
  • Only get the latest history of past 30 days.

Response:

{
"success": true,
"futuresType": 2,
"transfers":[
{
"from":"", // master account
"to":"2",
"asset":"BTC",
"qty":"1",
"tranId": "12137888538",
"clientTranId":"a123",
"time":1544433328000
},
{
"fromId":"1",
"toId":"2",
"asset":"ETH",
"qty":"2",
"tranId": "12137888538",
"clientTranId":"",
"time":1544433328000,

}
]
}