Vai al contenuto
GET /v1/reserve

One lending reserve by symbol

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/kamino-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}