Skip to main content

Get Loan List

Type: GET

Description: /v4/lever/loan

Parameters

NameTypeMandatoryDefaultDescriptionRanges
symbolstringYes-Trading pair-
startTimelongYes-Start time-
endTimelongYes-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", // loan record id
"amount": 0, // loan amount
"currency": "string", // currency
"currencyId": 0, // currency id
"symbol": "string", // trading pair symbol
"symbolId": 0, // symbol id
"createTime": 0 // create time (timestamp)
}
]
}
}