/v1/meta
Service metadata
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/solend-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/solend-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/solend-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/solend-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Rates are live supply/borrow APYs (percent); USD values are derived from on-chain reserve amounts and oracle prices. Look up an asset by symbol (symbol=SOL, USDC). Only the main pool's assets above $1k supplied are listed.",
"source": "Solend / Save public API (api.solend.fi/v1, live)",
"service": "solend-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/asset": "One asset by symbol (symbol=SOL).",
"GET /v1/markets": "Every asset with supply/borrow APY, utilisation and TVL (limit=50).",
"GET /v1/summary": "Pool aggregate — total supplied/borrowed, top markets."
},
"description": "Live lending-market data from Solend (now Save), the leading Solana money market. The Solana lending view — every asset in the main pool with its supply and borrow APY, utilisation, value supplied and value borrowed. markets = every asset with rates, utilisation and TVL ranked by value supplied; asset = one asset by symbol; summary = the pool aggregate (total supplied and borrowed, asset count, largest markets). Live, no key, nothing stored. An on-chain money market on Solana — distinct from the other DeFi, DEX and lending APIs.",
"assets_tracked": 42,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:42:18.678Z",
"request_id": "12db165e-1020-446a-81dd-41bc0ff529fd"
},
"status": "ok",
"message": "Meta",
"success": true
}