Vai al contenuto
GET /v1/overview

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

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/fluid-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}