/v1/pools
Positions across Fluid dex / lending / lite products with TVL and APY
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
…