Skip to main content

Documentation Index

Fetch the complete documentation index at: https://hypernode-docs.polynode.dev/llms.txt

Use this file to discover all available pages before exploring further.

Endpoints

All reserves

GET /v2/borrow-lend/reserves
Returns all lending reserve states with current rates, utilization, and balances.
[
  [0, {
    "borrowYearlyRate": "0.05",
    "supplyYearlyRate": "0.0137296057",
    "balance": "25479896.6721659414",
    "utilization": "0.3051023496",
    "oraclePx": "1.0",
    "ltv": "0.0",
    "totalSupplied": "36667120.8191452399",
    "totalBorrowed": "11187224.7151357103"
  }]
]
FieldDescription
borrowYearlyRateAnnualized borrow APR
supplyYearlyRateAnnualized supply APY
balanceAvailable liquidity
utilizationFraction of supply currently borrowed
oraclePxOracle price of the token
ltvLoan-to-value ratio
totalSuppliedTotal deposited supply
totalBorrowedTotal outstanding borrows
Token 0 = USDC, Token 1452 = USDH. Refreshed every 30 seconds from local node.

Single reserve

GET /v2/borrow-lend/reserve?token={id}

User positions

GET /v2/user/borrow-lend?address={wallet}
Returns a user’s borrow/lend positions and health factor.