Skip to main content

Get Repay List

Type: GET

Description: /v4/lever/repay

Parameters

NameTypeMandatoryDefaultDescriptionRanges
SymbolStringNo-Trading pair-
StartTimeLongYes-Start time-
EndTimeLongNo-End time-
FromIdLongNo-Page start ID-
DirectionStringYes-Page directionNEXT / PREV
LimitIntNo20Page limitDefault 20

Response Example

Response
{
"rc": 0,
"mc": "SUCCESS",
"ma": [{}],
"result": {
"hasNext": true, // Whether has next page
"hasPrev": true, // Whether has previous page
"items": [
{
"id": "string", // Repay record ID
"amount": 0, // Repay amount
"currency": "string", // Currency
"currencyId": 0, // Currency ID
"symbol": "string", // Trading pair symbol
"symbolId": 0, // Symbol ID
"interestAmount": 0, // Interest amount
"type": "MANUAL", // Repay type: MANUAL / SYSTEM
"createTime": 0 // Create time (timestamp)
}
]
}
}