Aller au contenu
GET /v1/collateral

Assets backing LUSD/BOLD — ETH and LSTs, by USD and share

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/liquity-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}