Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/growthepie-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "USD metrics are dollars; daa = daily active addresses; profit = fees minus L1 data costs; txcosts = median tx cost (USD). metric accepts: active_addresses, txcount, fees, profit, txcosts, tvl, stablecoins, market_cap, fdv, rent_paid, throughput.",
        "source": "growthepie.xyz (api.growthepie.xyz/v1, live daily)",
        "service": "growthepie-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/chain": "One rollup's latest metrics — active addresses, txcount, fees, profit, costs, TVL (chain=arbitrum).",
            "GET /v1/chains": "List the tracked L2 rollups.",
            "GET /v1/metric": "Every rollup ranked by one metric (metric=active_addresses|fees|profit|tvl…, limit=50)."
        },
        "description": "Live economic-activity metrics for Ethereum Layer-2 rollups (Arbitrum, Base, Optimism, zkSync, Linea, Scroll and more), from growthepie.xyz. The L2 fundamentals cut: how much each rollup is used and what it earns. The chains endpoint lists tracked rollups; the chain endpoint returns one rollup's latest metrics (daily active addresses, transaction count, fees, on-chain profit, median transaction cost, stablecoin supply, TVL, market cap); the metric endpoint ranks every rollup by one metric. Live, no key, nothing stored. The L2 activity / economics cut — distinct from the per-chain on-chain (block/gas) and TVL-only APIs.",
        "tracked_rollups": 29,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T01:43:06.366Z",
        "request_id": "e909fced-9161-416c-9214-5a5b71585a6f"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}