Skip to main content
Version: V3

Get Transfer Records (USER_DATA)

  • GET /api/v3/account/transferRecords

Weight(IP): 3, Weight(UID): 3

Request parameters

ParameterTypeRequired?Description
coinIdIntegerNoFilter by asset ID.
fromTypeStringNoSource account type.
limitIntegerNoNumber of records to return (default 100).
afterLongNoReturn records after this time (ms).
beforeLongNoReturn 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

FieldTypeDescription
coinNameStringAsset symbol.
statusStringTransfer status.
toTypeStringDestination account type.
toSymbolStringDestination symbol (if applicable).
fromTypeStringSource account type.
fromSymbolStringSource symbol (if applicable).
amountStringTransfer amount.
tradeTimeStringTransfer time (ms).

Response example

[
{
"coinName": "USDT",
"status": "SUCCESS",
"toType": "FUNDING",
"toSymbol": "",
"fromType": "SPOT",
"fromSymbol": "",
"amount": "100.00000000",
"tradeTime": "1764505800123"
}
]