查询内部转账记录
- GET
/api/v3/wallet/transfer/history
权重(IP): 5
分页查询当前认证用户的内部转账记录,需要 ACCOUNT_DETAILS 权限。
请求参数
| 参数名 | 参数类型 | 是否必须 | 描述 |
|---|---|---|---|
| coin | String | 否 | 币种编码。 |
| clientWithdrawId | String | 否 | 客户端提币唯一标识。 |
| status | Integer | 否 | 订单状态。 |
| startTime | Long | 否 | 起始创建时间,毫秒时间戳,包含下界。与 endTime 同时传入时,默认最大查询跨度为 90 天。 |
| endTime | Long | 否 | 结束创建时间,毫秒时间戳,不包含上界。 |
| pageNo | Integer | 否 | 页码,从 1 开始,默认 1。 |
| pageSize | Integer | 否 | 每页条数,默认 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 列表项字段如下。
| 字段名 | 类型 | 字段说明 |
|---|---|---|
| clientWithdrawId | String | 客户端提币唯一标识。 |
| coin | String | 币种编码。 |
| receiveAccount | String | 收款账号,当前为收款用户 UID。 |
| amount | Decimal | 转账数量。 |
| fee | Decimal | 手续费。 |
| status | Integer | 订单状态。 |
| createdAt | Long | 创建时间,毫秒时间戳。 |
| updatedAt | Long | 更新时间,毫秒时间戳。 |
返回示例
{
"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
}
]
}