Zum Inhalt springen
GET /v1/pools

Liquity pools (stability pools / deposits) with APY

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/liquity-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/liquity-api/v1/pools" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/liquity-api/v1/pools", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/liquity-api/v1/pools");
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/pools",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Liquity pools — stability pools and deposit positions across v1 and v2; the BOLD stability pool earns yield.",
        "sort": "apy",
        "count": 3,
        "pools": [
            {
                "apy": 2.75,
                "tvl": 2596967,
                "chain": "Ethereum",
                "symbol": "BOLD",
                "pool_id": "326739f2-4650-4992-a8eb-a400e7790499",
                "version": "v2",
                "apy_base": null,
                "apy_reward": null,
                "stablecoin": true
            },
            {
                "apy": 1.78,
                "tvl": 10281955,
                "chain": "Ethereum",
                "symbol": "BOLD",
                "pool_id": "dac71f4f-7b97-463a-b19f-9796c56c21f1",
                "version": "v2",
                "apy_base": null,
                "apy_reward": null,
                "stablecoin": true
            },
            {
                "apy": 1.77,
                "tvl": 6859447,
                "chain": "Ethereum",
                "symbol": "BOLD",
                "pool_id": "a635df9a-4cfc-4d17-86d0-934ea441e79f",
                "version": "v2",
                "apy_base": null,
                "apy_reward": null,
                "stablecoin": true
            }
        ],
        "source": "DeFiLlama",
        "matched": 3,
        "version": "v2",
        "protocol": "Liquity"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:29.159Z",
        "request_id": "622d4e09-8c4b-4324-8ed9-b7f456cce9c0"
    },
    "status": "ok",
    "message": "Liquity pools retrieved successfully",
    "success": true
}