/v1/meta
Service metadata & live sample
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}