/v1/pools
Aerodrome pools with fee APY vs AERO emission APY
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/aerodrome-api/v1/pools" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aerodrome-api/v1/pools", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aerodrome-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/aerodrome-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": "Aerodrome pools. apy = fee_apy + emission_apy; emission_apy is the AERO vote-incentive reward, the defining feature of the ve(3,3) model.",
"sort": "tvl",
"count": 25,
"pools": [
{
"apy": 1.76,
"tvl": 20833330,
"symbol": "WETH-MSETH",
"fee_apy": 0.02,
"pool_id": "08e1a166-5366-4f57-bef8-76acb53699f0",
"pool_type": "concentrated",
"stablecoin": false,
"volume_24h": 24344.37,
"emission_apy": 1.73,
"incentivized": true
},
{
"apy": 3.76,
"tvl": 20128569,
"symbol": "MSUSD-USDC",
"fee_apy": 0.26,
"pool_id": "aae6cc3a-783b-4a76-bea7-c3edccd28d62",
"pool_type": "concentrated",
"stablecoin": true,
"volume_24h": 297283.92,
"emission_apy": 3.5,
"incentivized": true
},
{
"apy": 29.79,
"tvl": 12853358,
"symbol": "WETH-CBBTC",
"fee_apy": 14.42,
"pool_id": "4943b6d2-aad2-4f4d-b56e-93f41ef043aa",
"pool_type": "concentrated",
"stablecoin": false,
"volume_24h": 26758709.13,
"emission_apy": 15.37,
"incentivized": true
},
{
"apy": 43.68,
"tvl": 10040932,
"symbol": "USDC-CBBTC",
"fee_apy": 23.79,
"pool_id": "ff82c362-dea1-4946-b3b1-92ebd5100b1e",
"pool_type": "concentrated",
"stablecoin": false,
"volume_24h": 33954834.23,
"emission_apy": 19.89,
"incentivized": true
},
{
"apy": 37.06,
"tvl": 8967381,
"symbol": "WETH-USDC",
"fee_apy": 10.95,
"pool_id": "10137e20-efbc-4e15-a733-17ecb52c48e8",
"pool_type": "concentrated",
"stablecoin": false,
"volume_24h": 38961728.17,
"emission_apy": 26.12,
"incentivized": true
},
{
"apy": 30.46,
"tvl": 4043734,
"symbol": "VVV-DIEM",
"fee_apy": null,
"pool_id": "c5bfb4c1-f788-4d05-8714-42c603c81534",
"pool_type": "concentrated",
"stablecoin": false,
"volume_24h": null,
"emission_apy": 30.46,
"incentivized": true
},
{
"apy": 5.13,
"tvl": 3969148,
"symbol": "CBBTC-LBTC",
"fee_apy": 0,
"pool_id": "ff009fa1-2dda
…