/v1/overview
Combined Liquity snapshot (collateral + assets + best pool)
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}