/v1/pools
Liquity pools (stability pools / deposits) with APY
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}