Skip to main content

Query Sub-account Futures Asset Transfer History(For Master Account)

API Description

Query Sub-account Futures Asset Transfer History

HTTP Request

GET /sapi/v1/sub-account/futures/internalTransfer

Request Weight(IP)

1

Request Parameters

NameTypeMandatoryDescription
emailSTRINGYESSub-account email
futuresTypeLONGYES1:USDT-margined Futures,2: Coin-margined Futures
startTimeLONGNODefault return the history with in 100 days
endTimeLONGNODefault return the history with in 100 days
pageINTNODefault value: 1
limitINTNODefault value: 50, Max value: 500
recvWindowLONGNO
timestampLONGYES

Response Example

{
"success":true,
"futuresType": 2,
"transfers":[
{
"from":"aaa@test.com",
"to":"bbb@test.com",
"asset":"BTC",
"qty":"1",
"tranId":11897001102,
"time":1544433328000
},
{
"from":"bbb@test.com",
"to":"ccc@test.com",
"asset":"ETH",
"qty":"2",
"tranId":11631474902,
"time":1544433328000
}
]
}