Aller au contenu
GET /v1/pools

Positions across Fluid dex / lending / lite products with TVL and APY

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/pools" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fluid-api/v1/pools", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fluid-api/v1/pools");
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/pools",
    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": "Positions across all three Fluid products: dex (trading pools), lending (money markets) and lite (vaults).",
        "sort": "tvl",
        "chain": "Ethereum",
        "count": 25,
        "pools": [
            {
                "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
            },
            {
                "tvl": 107740408,
                "chain": "Ethereum",
                "symbol": "USDT",
                "pool_id": "4e8cc592-c8d5-4824-8155-128ba521e903",
                "product": "lending",
                "total_apy": 4.43,
                "reward_apy": 1.19,
                "stablecoin": true,
                "supply_apy": 3.24
            },
            {
                "tvl": 105946265,
                "chain": "Ethereum",
                "symbol": "USDC",
                "pool_id": "4438dabc-7f0c-430b-8136-2722711ae663",
                "product": "lending",
                "total_apy": 5.31,
                "reward_apy": 1.21,
                "stablecoin": true,
                "supply_apy": 4.1
            },
            {
                "tvl": 68708028,
                "chain": "Ethereum",
                "symbol": "ETH",
                "pool_id": "cbb9fc26-2b9e-436a-95d0-c75e2c0f5869",
                "product": "lending",
                "total_apy": 1.55,
                "reward_apy": null,
                "stablecoin": false,
                "supply_apy": 1.55
            },
            {
                "tvl": 33767561,
                "chain": "Ethereum",
                "symbol": "ETH",
                "pool_id": "1262521f-3ba5-47d7-b035-ace072a0d0df",
                "product": "lending",
                "total_apy": 1.55,
                "reward_apy": null,
                "stablecoin": false,
                "supply_apy": 1.55
            },
            {
                "tvl": 23086822,
                "chain": "Ethereum",
                "symbol": "WBTC",
                "pool_id": "946c7197-7b0b-438b-a3a0-6de4288c534a",
                "product": "lending",
                "total_apy": 0.13,
                "reward_apy": null,
                "stablecoin": false,
                "supply_apy": 0.13
            },
            {
                "tvl": 15323614,
                "chain": "Ethereum",
                "symbol": "REUSD",
                "pool_id": "b8324a02-07e1-44ff-bb55-9d55ca98160e",
                "product": "lending",
                "total_apy": 0,
                "reward_apy": null,
                "stablecoin": true,
                "supply_apy": 0
            },
            {
                "tvl": 13173497,
                "chain": "Ethereum",
                "symb
…