Aller au contenu
GET /v1/overview

Combined Liquity snapshot (collateral + assets + best pool)

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/overview" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/liquity-api/v1/overview", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/liquity-api/v1/overview");
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/overview",
    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": "Snapshot of Liquity: total collateral, the assets backing LUSD/BOLD, and the best-earning pool.",
        "source": "DeFiLlama",
        "protocol": "Liquity",
        "best_pool": {
            "apy": 2.75,
            "symbol": "BOLD",
            "version": "v2"
        },
        "pool_count": 7,
        "chain_count": 1,
        "top_collateral": {
            "usd": 137995829.3,
            "asset": "WETH",
            "share_pct": 69.78
        },
        "total_collateral_usd": 197759953.66,
        "collateral_asset_count": 3
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:28.949Z",
        "request_id": "966d90c2-1025-404b-b6d2-23e95d66b103"
    },
    "status": "ok",
    "message": "Liquity overview retrieved successfully",
    "success": true
}