/v1/collateral
Assets backing LUSD/BOLD — ETH and LSTs, by USD and share
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/liquity-api/v1/collateral" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/liquity-api/v1/collateral", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/liquity-api/v1/collateral");
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/liquity-api/v1/collateral",
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": "Assets backing Liquity's LUSD / BOLD stablecoins (ETH and liquid-staking tokens), by USD value and share.",
"count": 3,
"source": "DeFiLlama",
"protocol": "Liquity",
"collateral": [
{
"usd": 137995829.3,
"asset": "WETH",
"share_pct": 69.78
},
{
"usd": 47895287.5,
"asset": "WSTETH",
"share_pct": 24.22
},
{
"usd": 11868836.86,
"asset": "RETH",
"share_pct": 6
}
],
"asset_count": 3
},
"meta": {
"timestamp": "2026-06-14T08:04:29.074Z",
"request_id": "1c7e0ba3-368c-4f0e-8676-ce1c8d79c7c7"
},
"status": "ok",
"message": "Liquity collateral retrieved successfully",
"success": true
}