Zum Inhalt springen
GET /v1/metric

Every rollup ranked by one metric

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 28,
        "metric": "daa",
        "source": "growthepie",
        "ranking": [
            {
                "date": "2026-06-10",
                "name": "Polygon PoS",
                "chain": "polygon_pos",
                "value": 937111
            },
            {
                "date": "2026-06-10",
                "name": "Base Chain",
                "chain": "base",
                "value": 494752
            },
            {
                "date": "2026-06-10",
                "name": "Celo",
                "chain": "celo",
                "value": 384841
            },
            {
                "date": "2026-06-10",
                "name": "Arbitrum One",
                "chain": "arbitrum",
                "value": 117694
            },
            {
                "date": "2026-06-10",
                "name": "ZKsync Era",
                "chain": "zksync_era",
                "value": 98917
            },
            {
                "date": "2026-06-10",
                "name": "Starknet",
                "chain": "starknet",
                "value": 64430
            },
            {
                "date": "2026-06-10",
                "name": "World Chain",
                "chain": "worldchain",
                "value": 42615
            },
            {
                "date": "2026-06-10",
                "name": "Ink",
                "chain": "ink",
                "value": 39892
            },
            {
                "date": "2026-03-17",
                "name": "Testnet Robinhood",
                "chain": "testnet_robinhood",
                "value": 35144
            },
            {
                "date": "2026-06-10",
                "name": "Soneium",
                "chain": "soneium",
                "value": 29529
            },
            {
                "date": "2026-06-10",
                "name": "Gravity",
                "chain": "gravity",
                "value": 18323
            },
            {
                "date": "2026-06-10",
                "name": "OP Mainnet",
                "chain": "optimism",
                "value": 16840
            },
            {
                "date": "2026-06-10",
                "name": "Ronin",
                "chain": "ronin",
                "value": 14794
            },
            {
                "date": "2026-06-10",
                "name": "Linea",
                "chain": "linea",
                "value": 4693
            },
            {
                "date": "2026-06-10",
                "name": "Taiko Alethia",
                "chain": "taiko",
                "value": 3392
            },
            {
                "date": "2026-06-10",
                "name": "MegaETH",
                "chain": "megaeth",
                "value": 3151
            },
            {
                "date": "2026-06-10",
                "name": "Scroll",
                "chain": "scroll",
                "value":
…