Skip to content
GET /v1/reserve

One lending reserve by symbol

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/kamino-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/kamino-api/v1/reserve" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kamino-api/v1/reserve", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kamino-api/v1/reserve");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/kamino-api/v1/reserve",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "mint": "So11111111111111111111111111111111111111112",
        "chain": "solana",
        "market": "main",
        "source": "Kamino",
        "symbol": "SOL",
        "borrow_usd": 165193109.02,
        "supply_usd": 179021781.5,
        "max_ltv_pct": 74,
        "available_usd": 13828672.49,
        "borrow_apy_pct": 9.5707,
        "supply_apy_pct": 7.4321,
        "utilization_pct": 92.2754
    },
    "meta": {
        "timestamp": "2026-06-10T22:57:05.730Z",
        "request_id": "d3598f81-1254-432d-905e-f29930e39ec2"
    },
    "status": "ok",
    "message": "Reserve retrieved successfully",
    "success": true
}