info (borrowLendReserveState)
Hyperliquid node API
borrowLendReserveState | Hyperliquid info
The info endpoint with type: “borrowLendReserveState” retrieves the reserve state for a specific token in the Hyperliquid borrow/lend market.
POST
info (borrowLendReserveState)
Documentation Index
Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
Use this file to discover all available pages before exploring further.
This method is available on Chainstack. Not all Hyperliquid methods are available on Chainstack, as the open-source node implementation does not support them yet — see Hyperliquid methods for the full availability breakdown.
info endpoint with type: "borrowLendReserveState" retrieves the reserve state for a specific token in the Hyperliquid borrow/lend market. Returns current rates, utilization, and supply/borrow totals.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
Request body
type(string, required) — The request type. Must be"borrowLendReserveState".token(integer, required) — Token index (e.g.,0for USDC).
Response
The response is an object containing:borrowYearlyRate(string) — Annual borrow interest rate.supplyYearlyRate(string) — Annual supply interest rate.balance(string) — Available balance in the reserve.utilization(string) — Current utilization ratio of the reserve.oraclePx(string) — Oracle price of the token.ltv(string) — Loan-to-value ratio for the token as collateral.totalSupplied(string) — Total amount supplied to the reserve.totalBorrowed(string) — Total amount borrowed from the reserve.
Example request
Shell
Example response
Use case
Theinfo endpoint with type: "borrowLendReserveState" is useful for:
- Displaying current borrow and supply rates for a specific token
- Monitoring reserve utilization to anticipate rate changes
- Building lending market dashboards with real-time reserve data
- Calculating potential yields before supplying assets
Last modified on May 18, 2026