Zum Inhalt springen
GET /v1/summary

Ecosystem aggregate — TVL, chain/platform split

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/frax-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "chains": 10,
        "source": "Frax Finance",
        "protocol": "Frax Finance",
        "platforms": 47,
        "pool_count": 273,
        "tvl_by_chain": {
            "bsc": 14300.9,
            "fantom": 2181682.77,
            "fraxtal": 543965.24,
            "polygon": 99998.53,
            "arbitrum": 513634.24,
            "ethereum": 110575499.26,
            "moonbeam": 11905.31,
            "optimism": 125673.95,
            "avalanche": 986.62,
            "moonriver": 176085.48
        },
        "tvl_by_platform": {
            "fxb": 24317.87,
            "fxs": 11656865.66,
            "aave": 0,
            "aura": 0,
            "fpis": 54938.26,
            "frax": 13992496.19,
            "idex": 0,
            "angle": 0,
            "bunni": 994.49,
            "curve": 5603390.02,
            "thena": 0,
            "yearn": 0,
            "arable": 0,
            "convex": 43189458.5,
            "gelato": 32.23,
            "morpho": 889.02,
            "ramses": 0,
            "saddle": 43423.85,
            "vector": 0,
            "vesper": 2439.07,
            "wombat": 14300.9,
            "apeswap": 0,
            "echidna": 0,
            "gearbox": 0,
            "mstable": 99827.79,
            "tokemak": 12553.18,
            "uniswap": 129255.06,
            "alphadex": 0,
            "balancer": 170.71,
            "moonwell": 0,
            "platypus": 0,
            "stakedao": 72620.49,
            "stargate": 9106.93,
            "kyberswap": 8386.1,
            "sentiment": 10089.52,
            "solarbeam": 0,
            "sommelier": 486.3,
            "sushiswap": 197127.68,
            "templedao": 1867.23,
            "traderjoe": 0,
            "velodrome": 121537.93,
            "spiritswap": 2181682.77,
            "stellaswap": 11905.31,
            "uniswap_v3": 36768523.25,
            "fluxfinance": 603.4,
            "beefy_finance": 3002.92,
            "curve_arbi_vstfrax": 31439.67
        },
        "top_pools_by_apy": [
            {
                "chain": "arbitrum",
                "apy_pct": 15583.8417,
                "platform": "sentiment",
                "identifier": "Sentiment LFrax",
                "liquidity_locked_usd": 10089.52
            },
            {
                "chain": "ethereum",
                "apy_pct": 2834.7918,
                "platform": "convex",
                "identifier": "Convex stkcvxALCXFRAXBP",
                "liquidity_locked_usd": 334181.89
            },
            {
                "chain": "ethereum",
                "apy_pct": 2816.4021,
                "platform": "convex",
                "identifier": "Convex ALCXFRAXBP",
                "liquidity_locked_usd": 357135.93
            },
            {
                "chain": "fantom",
                "apy_pct": 2741.6276,
                "platform": "spiritswap",
                "identifier": "SpiritSwap/Ola FRAX Lending",
                "liquidity_lock
…