Vai al contenuto
GET /v1/overview

Combined Liquity snapshot (collateral + assets + best pool)

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/liquity-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

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