Naar de inhoud
GET /v1/reserve

One lending reserve by symbol

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/kamino-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}