Index Linked Plan Redemption(USER_DATA)
API Description
Get the history of Index Linked Plan Redemption transactions
HTTP Request
GET /sapi/v1/lending/auto-invest/redeem/history
Request Weight(IP)
1
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
requestId | LONG | YES | request id |
startTime | LONG | NO | |
endTime | LONG | NO | |
current | LONG | NO | Currently querying page. Start from 1,Default:1 |
asset | STRING | NO | |
size | LONG | NO | Default:10, Max:100 |
recvWindow | LONG | NO | no more than 60000 |
timestamp | LONG | YES |
- Max 30 day difference between
startTime
andendTime
- If no
startTime
andendTime
, default to show past 30 day records
Response Example
[
{
"indexId":1, //index identifier
"indexName":"BINANCE TOP 10 EW", //index name
"redemptionId":11 //redemption record identifier
"status":"SUCCESS", //redemption SUCCESS/FAILED
"asset":"BTC", //asset invovled
"amount":"0.005", //redemption amount
"redemptionDateTime":1648378800000, //redemption timestamp
"transactionFee":"0", //redemption fee
"transactionFeeUnit":"USDT" //denomination of redemption fee amount
},
{
"indexId":1,
"indexName":"BINANCE TOP 10 EW",
"redemptionId":12
"status":"SUCCESS",
"asset":"BNB",
"amount":"0.005",
"redemptionDateTime":1648378800000,
"transactionFee":"0",
"transactionFeeUnit":"USDT"
}
]