Naar de inhoud
GET /v1/overview

Combined Fluid snapshot (TVL + DEX volume + fees + TVL by product + top pool)

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/fluid-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}