v26

latestOpenAPI 3.0.2raw.githubusercontent.com2024-10-0834042975.6 KB
VIP Loans

Get Loanable Assets Data

Get interest rate and borrow limit of loanable assets. The borrow limit is shown in USD value.

Weight(IP): 400

get/sapi/v1/loan/vip/loanable/data

Query parameters

loanCoinstring
Example:BUSD

Coin loaned

vipLevelinteger
Example:1

Defaults to user's vip level

recvWindowinteger
Example:5000

The value cannot be greater than 60000

timestampinteger required

UTC timestamp in ms

signaturestring required

Signature

Response

Loanable Assets Data

totalinteger required

Example response

{
  "total": 1,
  "rows": [
    {
      "loanCoin": "BUSD",
      "_flexibleDailyInterestRate": "0.001503",
      "_flexibleYearlyInterestRate": "0.548595",
      "_30dDailyInterestRate": "0.000136",
      "_30dYearlyInterestRate": "0.03450",
      "_60dDailyInterestRate": "0.000145",
      "_60dYearlyInterestRate": "0.04103",
      "minLimit": "100",
      "maxLimit": "1000000",
      "vipLevel": 1
    }
  ]
}