Get Transfer Records (USER_DATA)
- GET
/api/v3/account/transferRecords
Weight(IP): 3, Weight(UID): 3
Request parameters
| Parameter | Type | Required? | Description |
|---|---|---|---|
| coinId | Integer | No | Filter by asset ID. |
| fromType | String | No | Source account type. |
| limit | Integer | No | Number of records to return (default 100). |
| after | Long | No | Return records after this time (ms). |
| before | Long | No | Return records before this time (ms). |
Request example
curl "https://api-spot.weex.com/api/v3/account/transferRecords?coinId=2&limit=50" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
Response parameters
| Field | Type | Description |
|---|---|---|
| coinName | String | Asset symbol. |
| status | String | Transfer status. |
| toType | String | Destination account type. |
| toSymbol | String | Destination symbol (if applicable). |
| fromType | String | Source account type. |
| fromSymbol | String | Source symbol (if applicable). |
| amount | String | Transfer amount. |
| tradeTime | String | Transfer time (ms). |
Response example
[
{
"coinName": "USDT",
"status": "SUCCESS",
"toType": "FUNDING",
"toSymbol": "",
"fromType": "SPOT",
"fromSymbol": "",
"amount": "100.00000000",
"tradeTime": "1764505800123"
}
]