Skip to content
GET /v1/collateral

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

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/liquity-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

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