Skip to main content

Get Interest List

Type: GET

Description: /v4/lever/interest

Parameters

NameTypeMandatoryDefaultDescriptionRanges
symbolstringNo-Trading pair symbol-
startTimelongYes-Start time-
endTimelongYes-End time-
fromIdlongNo-Page starting 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", // record id
"amount": 0, // interest amount
"currency": "string", // currency
"currencyId": 0, // currency id
"symbol": "string", // trading pair symbol
"symbolId": 0, // symbol id
"dailyInterestRate": 0, // daily interest rate
"source": "FIX_JOB", // source, FIX_JOB / USER
"createTime": 0 // create time (timestamp)
}
]
}
}