/v1/overview
Combined Fluid snapshot (TVL + DEX volume + fees + TVL by product + top 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/fluid-api/v1/overview" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fluid-api/v1/overview", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fluid-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/fluid-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 Fluid's hybrid model: total TVL, DEX volume, fees and the largest position.",
"source": "DeFiLlama",
"fees_30d": 3840872,
"protocol": "Fluid",
"top_pool": {
"tvl": 128104333,
"chain": "Ethereum",
"symbol": "WSTETH",
"pool_id": "69b12bf9-edb6-46d9-b5bc-761cf9efe137",
"product": "lending",
"total_apy": 0.05,
"reward_apy": null,
"stablecoin": false,
"supply_apy": 0.05
},
"total_tvl": 954646375.25,
"pool_count": 188,
"chain_count": 5,
"dex_volume_24h": 56066949,
"tvl_by_product_top100": {
"dex": 250561918,
"lite": 152814606,
"lending": 935920140
}
},
"meta": {
"timestamp": "2026-06-14T08:04:25.371Z",
"request_id": "4e811c78-6256-4e1d-90ef-3a056ef2f9fa"
},
"status": "ok",
"message": "Fluid overview retrieved successfully",
"success": true
}