跳到主要内容

查询内部转账记录

  • GET /api/v3/wallet/transfer/history

权重(IP): 5

分页查询当前认证用户的内部转账记录,需要 ACCOUNT_DETAILS 权限。

请求参数

参数名参数类型是否必须描述
coinString币种编码。
clientWithdrawIdString客户端提币唯一标识。
statusInteger订单状态。
startTimeLong起始创建时间,毫秒时间戳,包含下界。与 endTime 同时传入时,默认最大查询跨度为 90 天。
endTimeLong结束创建时间,毫秒时间戳,不包含上界。
pageNoInteger页码,从 1 开始,默认 1。
pageSizeInteger每页条数,默认 20,最大 50。

请求示例

curl "https://api-spot.weex.com/api/v3/wallet/transfer/history?coin=USDT&pageNo=1&pageSize=20" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1735632000000"

返回参数

返回分页公共字段与链上充币记录接口一致;items 列表项字段如下。

字段名类型字段说明
clientWithdrawIdString客户端提币唯一标识。
coinString币种编码。
receiveAccountString收款账号,当前为收款用户 UID。
amountDecimal转账数量。
feeDecimal手续费。
statusInteger订单状态。
createdAtLong创建时间,毫秒时间戳。
updatedAtLong更新时间,毫秒时间戳。

返回示例

{
"total": 1,
"pageSize": 20,
"pages": 1,
"page": 1,
"hasNextPage": false,
"items": [
{
"clientWithdrawId": "1dsvhjaVCNzqVr0AGj1uDYUp2advaf1",
"coin": "USDT",
"receiveAccount": "12242310503",
"amount": 22,
"fee": 0,
"status": 1,
"createdAt": 1787818759231,
"updatedAt": 1787818759231
}
]
}