/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/kamino-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kamino-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kamino-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "Kamino API (api.kamino.finance, live)",
"service": "kamino-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/vaults": "Top automated liquidity vaults by TVL with pair and APY (limit=25).",
"GET /v1/reserve": "One lending reserve by symbol (symbol=SOL).",
"GET /v1/overview": "Protocol aggregate supplied, borrowed and available (USD).",
"GET /v1/reserves": "Every lending reserve — supply/borrow APY, TVL, utilization, max LTV."
},
"description": "Live data from Kamino Finance, the largest lending and automated-liquidity protocol on Solana. Kamino's lending market lets users supply and borrow SOL, stablecoins and major SPL tokens, while its automated vaults run concentrated-liquidity strategies on Solana DEXs. The reserves endpoint returns every lending reserve on the main market — supply and borrow APY, total supplied and borrowed (USD), utilization and max LTV; the reserve endpoint returns one asset by symbol; the overview endpoint returns the protocol's aggregate supplied, borrowed and TVL; the vaults endpoint returns the top automated liquidity vaults by TVL with token pair and APY. Live, no key, nothing stored. Distinct from Ethereum lending (Morpho), liquid staking and DEX/price feeds — this is Kamino's own Solana lending and liquidity-vault layer.",
"reserve_count": 55,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:57:06.454Z",
"request_id": "3e89e532-472e-40cd-8591-cfb15b2d3b6e"
},
"status": "ok",
"message": "Meta",
"success": true
}