Aller au contenu
GET /v1/overview

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

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/fluid-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}