/v1/reserve
One lending reserve by symbol
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}