Ir al contenido
GET /v1/meta

Service metadata & live sample

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/liquity-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/liquity-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/liquity-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/liquity-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/liquity-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": "collateral takes optional limit (1-100) and min_usd. pools takes optional version (v1, v2), earning (true/false) and sort (tvl or apy). All money values are USD; APYs are percentages. Other endpoints take no parameters.",
        "sample": {
            "top_collateral": "WETH",
            "total_collateral_usd": 197759953.66
        },
        "source": "DeFiLlama open API (api.llama.fi + yields.llama.fi), live",
        "service": "liquity-api",
        "endpoints": {
            "GET /v1/tvl": "Total collateral locked in Liquity (total + per-chain).",
            "GET /v1/meta": "This document.",
            "GET /v1/pools": "Liquity pools (stability pools / deposits) with APY (version, earning, sort).",
            "GET /v1/overview": "Combined Liquity snapshot (collateral + assets + best pool).",
            "GET /v1/collateral": "Assets backing LUSD/BOLD — ETH and LSTs, by USD and share."
        },
        "description": "Live protocol metrics for Liquity, the original immutable decentralized borrowing protocol issuing the LUSD and BOLD stablecoins against ETH and LST collateral, keyless. Total collateral locked, the breakdown of which assets back the stablecoins (ETH, wstETH, rETH across v1 + v2), per-chain TVL, and the Liquity pools (stability pools) with APY. One combined overview snapshots it all. Live, nothing stored beyond a short protective cache. The CDP / decentralized-stablecoin metrics layer for DeFi dashboards, stablecoin, risk and yield apps. Distinct from DEX, lending, restaking and yield protocols — Liquity's collateralized-debt model specifically.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:29.242Z",
        "request_id": "72710370-2a61-4638-9d3b-1ccc77df942b"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}