/v1/tvl
Convex TVL total and per-chain breakdown
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/convex-api/v1/tvl" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/convex-api/v1/tvl", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/convex-api/v1/tvl");
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/tvl",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Total value locked in Convex (boosted Curve positions), in USD.",
"chains": [
{
"tvl": 513789170.05,
"chain": "Ethereum"
},
{
"tvl": 6312506.16,
"chain": "Fraxtal"
},
{
"tvl": 1805067.79,
"chain": "Arbitrum"
},
{
"tvl": 225688.9,
"chain": "Polygon"
}
],
"source": "DeFiLlama",
"protocol": "Convex Finance",
"total_tvl": 522132432.9,
"chain_count": 4
},
"meta": {
"timestamp": "2026-06-14T08:04:33.213Z",
"request_id": "441c4ca6-7b7d-4457-8c94-77754cf0251b"
},
"status": "ok",
"message": "Convex TVL retrieved successfully",
"success": true
}