Skip to content
GET /v1/meta

Service metadata & live sample

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/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/convex-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/convex-api/v1/meta");
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/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

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

{
    "data": {
        "note": "pools takes optional chain (e.g. Ethereum, Arbitrum), stablecoin (true/false), min_tvl, limit (1-100) and sort (tvl or apy). All money values are USD; APYs are percentages. Other endpoints take no parameters.",
        "sample": {
            "total_tvl": 522132432.9,
            "revenue_30d": 715237
        },
        "source": "DeFiLlama open API (api.llama.fi + yields.llama.fi), live",
        "service": "convex-api",
        "endpoints": {
            "GET /v1/tvl": "Convex TVL total and per-chain breakdown.",
            "GET /v1/fees": "Convex protocol fees and revenue (24h/7d/30d).",
            "GET /v1/meta": "This document.",
            "GET /v1/pools": "Boosted Curve yield pools on Convex with base and reward APY (chain, stablecoin, sort).",
            "GET /v1/overview": "Combined Convex snapshot (TVL + pools + fees + revenue + top pool)."
        },
        "description": "Live protocol metrics for Convex Finance, the yield-booster built on top of Curve, keyless. Total value locked, the boosted Curve yield pools with TVL and APY (base + rewards), per-chain TVL, and protocol fees and revenue. One combined overview snapshots it all. Live, nothing stored beyond a short protective cache. The yield-aggregator metrics layer for DeFi dashboards, yield, farming and analytics apps. Distinct from DEX, lending, restaking and generic DeFi/TVL browsers — Convex's Curve-boosted yield specifically.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:33.381Z",
        "request_id": "a35090ab-0997-4b4a-a89a-20fcec85469e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}