Get Cross/Isolated Margin Interest Records
Request via this endpoint to get the interest records of the cross/isolated margin lending.
HTTP REQUEST
GET /api/v3/margin/interest
Example
GET /api/v3/margin/interest
{
"currentPage": 1,
"pageSize": 50,
"totalNum": 1,
"totalPage": 1,
"items": [
{
"createdAt": 1697783812257,
"currency": "XMR",
"interestAmount": "0.1",
"dayRatio": "0.001"
}
]
}
API KEY PERMISSIONS
This endpoint requires the Margin Trading permission.
REQUEST URL
This endpoint support Spot URL
REQUEST RATE LIMIT
Spot weight
:20
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
isIsolated | Boolean | No | true-isolated ,false-cross;default is false |
symbol | String | No | trading pair, mandatory for isolated margin account |
currency | String | No | Currency |
startTime | Long | No | Start time |
endTime | Long | No | End time |
currentPage | int | No | Current query page, with a starting value of 1. Default:1 |
pageSize | int | No | Number of results per page. Default is 50, minimum is 10, maximum is 500 |
RESPONSES
Param | Description |
---|---|
currency | Currency |
dayRatio | Daily interest rate |
interestAmount | Interest amount |
createdTime | Time |
Remarks
The maximum period for queries should not exceed 30 days. If startTime and endTime are not passed, data from the last 7 days will be returned by default. You can only check data from the last 6 months.