Get Account Information

Get Account Information

get

Query to get the SBM user account information. (To pass parameters to obtain specific information, please click 「Test」and fill in the address information in the Query parameters section.)

Query parameters
addressesstringOptional

Query of the user addresses. (To query multiple addresses at the same time, please use ‘,’ to separate multiple addresses.)

minBorrowValueInTrxstringOptional

Query the minimum value of borrowed asset in TRX.

maxHealthstringOptional

Query the max health level

pageNointeger · int64Optional

Page number.

pageSizeinteger · int64Optional

Page size, maximum 1000.

Responses
200
Return the list of user account information.
application/json
get
GET /lend/account HTTP/1.1
Host: openapi.just.network
Accept: */*
{
  "code": 0,
  "data": {
    "totalPage": 1,
    "list": [
      {
        "addresses": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb",
        "health": 5.88,
        "liquidateStatusStartTime": "2025-06-29T10:53:19.491Z",
        "tokens": [
          {
            "address": "TNSBA6KvSvMoTqQcEgpVK7VhHT3z7wifxy",
            "borrowBalanceUnderlying": 0.704372293431166,
            "entered": 1,
            "supplyBalanceJtoken": 1.09062037,
            "supplyBalanceUnderlying": 0.011488913293347973,
            "underlyingSymbol": "USDD"
          }
        ],
        "totalBorrowValueInTrx": 11.27737,
        "totalCollateralValueInTrx": 24.126681
      }
    ],
    "totalCount": 1
  },
  "message": "SUCCESS"
}

Last updated