Query Universal Transfer History - broker user
request
get /api/v3/broker/sub-account/universalTransfer?timestamp={{timestamp}}&signature={{signature}}
response
[
{
"tranId":"11945860693",
"fromAccount":"master@test.com",
"toAccount":"subaccount1@test.com",
"clientTranId":"test",
"asset":"BTC",
"amount":"0.1",
"fromAccountType":"SPOT",
"toAccountType":"FUTURE",
"fromSymbol":"SPOT",
"toSymbol":"FUTURE",
"status":"SUCCESS",
"timestamp":1544433325000
},
{
"tranId":"11945860693",
"fromAccount":"master@test.com",
"toAccount":"subaccount1@test.com",
"clientTranId":"test",
"asset":"BTC",
"amount":"0.1",
"fromAccountType":"SPOT",
"toAccountType":"FUTURE",
"fromSymbol":"SPOT",
"toSymbol":"FUTURE",
"status":"SUCCESS",
"timestamp":1544433325000
}
]
Http Request:
- GET
/api/v3/broker/sub-account/universalTransfer
API Permission: SPOT_TRANSFER_READ
Request Parameter:
| Name | Type | Mandatory | Description |
|---|---|---|---|
| clientTranId | string | no | 32-character alphanumeric string |
| fromAccount | string | no | transfer from master account by default if fromAccount is not sent |
| toAccount | string | no | transfer to master account by default if toAccount is not sent |
| fromAccountType | string | yes | fromAccountType |
| toAccountType | string | yes | toAccountType |
| startTime | string | no | startTime(ms) |
| endTime | string | no | endTime(ms) |
| page | string | no | default 1 |
| limit | string | no | default 500, max 500 |
| timestamp | string | yes | timestamp |
| signature | string | yes | sign |
Response Parameter:
| Name | Type | Description |
|---|---|---|
| tranId | string | transfer ID |
| fromAccount | string | fromAccount |
| toAccount | string | toAccount |
| clientTranId | string | clientTranId |
| asset | string | transfer asset |
| amount | string | transfer amount |
| fromAccountType | string | fromAccountType |
| toAccountType | string | toAccountType |
| fromsymbol | string | fromsymbol |
| tosymbol | string | tosymbol |
| status | string | transfer status |
| timestamp | number | transfer time |