/v1/overview
Combined Convex snapshot (TVL + pools + fees + revenue + top pool)
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/convex-api/v1/overview" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/convex-api/v1/overview", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/convex-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/convex-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 Convex Finance: TVL, boosted-pool count, fees, revenue and the largest pool.",
"source": "DeFiLlama",
"fees_24h": 9964,
"protocol": "Convex Finance",
"top_pool": {
"apy": 2.24,
"tvl": 49739778,
"chain": "Ethereum",
"symbol": "FRAX-USDE",
"pool_id": "5fac4a47-5360-49b7-8b61-66f88a3d939f",
"apy_base": 0.02,
"apy_reward": 2.22,
"stablecoin": true,
"apy_30d_avg": 1.91,
"reward_tokens": [
"0xd533a949740bb3306d119cc777fa900ba034cd52",
"0x4e3fbd56cd56c3e72c1403e103b45db9da5b9d2b"
]
},
"total_tvl": 522132432.9,
"pool_count": 196,
"chain_count": 4,
"revenue_24h": 9085,
"revenue_30d": 715237
},
"meta": {
"timestamp": "2026-06-14T08:04:33.058Z",
"request_id": "36789db8-9f9e-4b36-b041-a899f0c6db1c"
},
"status": "ok",
"message": "Convex overview retrieved successfully",
"success": true
}