# Hyperliquid On-Chain Lending Rates

> Hyperliquid On-Chain Lending Rates is a paid API for AI agents from cryptopulse.theaslangroupllc.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-16).

Returns live borrow APR, supply APR, utilization, loan-to-value, and total supplied/borrowed for each reserve in Hyperliquid's native on-chain borrow-lend market.

## Facts

- Endpoint: GET https://cryptopulse.theaslangroupllc.com/api/lending-rates
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hyperliquid-on-chain-lending-rates-a8e98d36
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s25vRSQnw0q_LTz4cbv1n

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability hyperliquid-on-chain-lending-rates-a8e98d36
```

Example prompt: What's the current borrow rate for HYPE and the supply APR for USDC on Hyperliquid's lending market, and how utilized are those reserves right now?

## When to prefer this

Use this endpoint when you need real-time, on-chain lending rate data specifically for Hyperliquid's native borrow-lend market. It reads directly from the HyperCore reserve precompile, making it the only data source for this specific market. Prefer this over generic DeFi aggregators when accuracy and freshness for Hyperliquid reserves are critical, or when you need utilization and LTV data alongside APRs.

## Known failure modes

- HyperEVM RPC is temporarily unavailable — endpoint may return a 503 or stale data
- Newly listed reserve not yet indexed — reserve may be missing from results
- Payment not processed correctly via x402 protocol — 402 response with payment details
- Network timeout if HyperCore precompile is slow to respond

## How this service works

Live rates for Hyperliquid's native on-chain borrow-lend market. Answers "what can I earn supplying USDC on Hyperliquid", "what does it cost to borrow HYPE", "how utilized is each reserve". Read straight from the HyperCore reserve precompile over the public HyperEVM RPC: per reserve, borrow APR, supply APR, utilization, loan-to-value, and total supplied/borrowed. Covers the major collateral assets; new reserves appear as they list. No other data product covers this market. Deterministic, no LLM.

## Output

A list of reserve entries for each major collateral asset on Hyperliquid's native borrow-lend market, each containing: borrow APR (annualized percentage), supply APR (annualized percentage), utilization ratio, loan-to-value ratio, total supplied amount, and total borrowed amount. Data is read directly from the HyperCore reserve precompile via the public HyperEVM RPC, making it deterministic and real-time.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "token": {
   "type": "string",
   "description": "reserve symbol, e.g. USDC, HYPE, UBTC — omit for all live reserves"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "reserves": [
   {
    "token": "USDC",
    "ltv_pct": 0,
    "borrow_apr_pct": 5,
    "supply_apr_pct": 2.5,
    "total_supplied": 158000000,
    "utilization_pct": 55.6,
    "total_supplied_usd": 158000000
   }
  ],
  "deterministic": true,
  "reserve_count": 4
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hyperliquid-on-chain-lending-rates-a8e98d36/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptopulse.theaslangroupllc.com](https://www.zero.xyz/host/cryptopulse.theaslangroupllc.com/llms.txt)
