# Solend / Save Solana Lending API
> Live lending-market data from Solend (now Save), the leading Solana money market, over its public API — no key, nothing stored. This is the Solana lending view: every asset in the main pool with its supply and borrow APY, utilisation, value supplied and value borrowed, distinct from the other DeFi, DEX and lending APIs in the catalogue — Solend is an on-chain money market on Solana. The markets endpoint lists every asset with its live rates, utilisation and TVL, ranked by value supplied. The asset endpoint returns one asset by its symbol — its supply and borrow APY, utilisation, oracle price and the dollar value supplied and borrowed. The summary endpoint aggregates the pool: total value supplied and borrowed, asset count, the overall utilisation and the largest markets. Build DeFi lending dashboards, yield comparators, borrow-rate monitors and risk tools on top of real Solend data. Rates are live supply/borrow APYs and USD values are derived from on-chain reserve amounts and oracle prices; look up an asset by symbol (SOL, USDC).

## Authentication
All requests require your oanor API key in the `x-oanor-key` header. Get one at https://www.oanor.com/developer/keys.

```bash
curl -H "x-oanor-key: oanor_live_…" "https://api.oanor.com/solend-api/..."
```

## Pricing
- **Free** (Free) — 13,800 calls/Mo, 3 req/s
- **Starter** ($9/Mo) — 202,000 calls/Mo, 10 req/s
- **Pro** ($25/Mo) — 825,000 calls/Mo, 28 req/s
- **Scale** ($57/Mo) — 3,020,000 calls/Mo, 60 req/s

## Endpoints

### Markets

#### `GET /v1/markets` — Every asset with rates, utilisation and TVL

**Parameters:**
- `limit` (query, optional, string) — Max assets (default 50, max 100) Example: `50`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/solend-api/v1/markets?limit=50"
```

### Asset

#### `GET /v1/asset` — One asset by symbol

**Parameters:**
- `symbol` (query, required, string) — Asset symbol Example: `SOL`

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/solend-api/v1/asset?symbol=SOL"
```

### Summary

#### `GET /v1/summary` — Pool aggregate — supplied, borrowed, top markets

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/solend-api/v1/summary"
```

### Meta

#### `GET /v1/meta` — Service metadata

**Example:**
```bash
curl -H "x-oanor-key: $KEY" \
  "https://api.oanor.com/solend-api/v1/meta"
```


---
Marketplace page: https://www.oanor.com/api/solend-api
OpenAPI spec: https://www.oanor.com/api/solend-api/openapi.json
