Get Interest List
Type: GET
Description: /v4/lever/interest
Parameters
Name | Type | Mandatory | Default | Description | Ranges |
---|---|---|---|---|---|
symbol | string | No | - | Trading pair symbol | - |
startTime | long | Yes | - | Start time | - |
endTime | long | Yes | - | End time | - |
fromId | long | No | - | Page starting ID | - |
direction | string | Yes | - | Page direction | NEXT / PREV |
limit | int | No | 20 | Page limit | Default 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)
}
]
}
}