查询用户委托资金历史(适用主账户)(USER_DATA)
接口描述
查询用户委托资金历史
HTTP请求
GET /sapi/v1/asset/custody/transfer-history
请求权重(IP)
60
请求参数
名称 | 类型 | 是否必需 | 描述 |
---|---|---|---|
STRING | YES | ||
startTime | LONG | YES | |
endTime | LONG | YES | |
type | ENUM | NO | Delegate/Undelegate |
asset | STRING | NO | |
current | INTEGER | NO | 默认 1 |
size | INTEGER | NO | 默认 10, 最大 100 |
recvWindow | LONG | NO | |
timestamp | LONG | YES |
- 您需要打开 API Key 的 Enable Spot & Margin Trading 权限以使用此接口
响应示例
{
"total": 3316,
"rows": [
{
"clientTranId": "293915932290879488",
"transferType": "Undelegate",
"asset": "ETH",
"amount": "1",
"time": 1695205406000
},
{
"clientTranId": "293915892281413632",
"transferType": "Delegate",
"asset": "ETH",
"amount": "1",
"time": 1695205396000
}
]
}