Skip to content
GET /v1/tvl

Convex TVL total and per-chain breakdown

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/convex-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "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
}