curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "borrowLendReserveState",
"token": 0
}
'{}curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info \
--header 'Content-Type: application/json' \
--data '
{
"type": "borrowLendReserveState",
"token": 0
}
'{}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.
type (string, required) — The request type. Must be "borrowLendReserveState".token (integer, required) — Token index (e.g., 0 for USDC).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.curl -X POST \
-H "Content-Type: application/json" \
-d '{"type": "borrowLendReserveState", "token": 0}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/info
{
"borrowYearlyRate": "0.05",
"supplyYearlyRate": "0.0010632437",
"balance": "3464255.80696283",
"utilization": "0.0236276367",
"oraclePx": "1.0",
"ltv": "0.0",
"totalSupplied": "3548088.6923081698",
"totalBorrowed": "83832.95076168"
}
info endpoint with type: "borrowLendReserveState" is useful for:
Was this page helpful?