Skip to main content

Get Flexible Loan Borrow History(USER_DATA)

API Description#

Get Flexible Loan Borrow History

HTTP Request#

GET /sapi/v1/loan/flexible/borrow/history

Request Weight(IP)#

400

Request Parameters#

NameTypeMandatoryDescription
loanCoinSTRINGNO
collateralCoinSTRINGNO
startTimeLONGNO
endTimeLONGNO
currentLONGNOCurrent querying page. Start from 1; default: 1; max: 1000
limitLONGNODefault: 10; max: 100
recvWindowLONGNO
timestampLONGYES
  • If startTime and endTime are not sent, the recent 90-day data will be returned.
  • The max interval between startTime and endTime is 180 days.

Response Example#

{  "rows": [    {      "loanCoin": "BUSD",      "initialLoanAmount": "10000",      "collateralCoin": "BNB",      "initialCollateralAmount": "49.27565492",      "borrowTime": 1575018510000,      "status": "Succeeds" //Succeeds, Failed, Processing    }  ],  "total": 1}