Query Sub Account Transfer History(FUTURES)
HTTP Request
GET /sapi/v1/broker/transfer/futures
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
subAccountId | STRING | YES | |
futuresType | LONG | YES | 1:USDT Futures,2: COIN Futures |
clientTranId | STRING | NO | |
startTime | LONG | NO | default 30 days records |
endTime | LONG | NO | default 30 days records |
page | INT | NO | default 1 |
limit | INT | NO | default 50, max 500 |
recvWindow | LONG | NO | |
timestamp | LONG | YES |
- Only get the latest history of past 30 days.
Example 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,
}
]
}