Documentation Index
Fetch the complete documentation index at: https://developer.wooxpro.com/llms.txt
Use this file to discover all available pages before exploring further.
Get Transfer List (SIGNED)
Query futures account transfer records
Request URl
POST https://cloud-api.wooxpro.com/account/v1/transfer-contract-list
Request Limit
See Detailed Rate LimitRequest Parameter
Request
| Field | Type | Required? | Description |
|---|---|---|---|
| currency | String | No | Currency (like USDT) |
| time_start | Long | No | Start time(Timestamp in Milliseconds, e.g. 1681701557927) |
| time_end | Long | No | End time (Timestamp in Milliseconds, e.g. 1681701557927) |
| page | Int | Yes | Number of pages, allowed range [1,1000] |
| limit | Int | Yes | Number of queries, allowed range [10,100] |
| recvWindow | Long | No | Trade time limit, allowed range (0,60000], default: 5000 milliseconds |
Note
- If the time range
time_startandtime_endare not filled in, all data will be displayed by default. - When filling in the time range,
time_endmust be greater than the value oftime_start. - If only
time_startis filled in, query the historical records starting from the timestamp. - If only
time_endis filled in, query the historical records starting from this timestamp.
Response Data
Response
| Field | Type | Description |
|---|---|---|
| transfer_id | String | ID |
| currency | String | Currency |
| amount | String | Amount |
| type | String | Type - spot_to_contract- contract_to_spot |
| state | String | Result - PROCESSING=Waiting to execute- FINISHED=Successful transfer- FAILED=Transfer failed |
| timestamp | Long | Transfer creation time in milliseconds, e.g. 1638631674326 |