Skip to content
GET /v1/chain

One rollup latest activity metrics

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/growthepie-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "chain": "arbitrum",
        "source": "growthepie",
        "metrics": {
            "daa": {
                "date": "2026-06-10",
                "value": 117694
            },
            "tvl": {
                "date": "2026-06-10",
                "value": 16028548871.18
            },
            "fdv_usd": {
                "date": "2026-06-11",
                "value": 774257058.06
            },
            "txcount": {
                "date": "2026-06-10",
                "value": 1525635
            },
            "profit_usd": {
                "date": "2026-06-10",
                "value": 14989.3
            },
            "stables_mcap": {
                "date": "2026-06-10",
                "value": 4874311406.11
            },
            "fees_paid_usd": {
                "date": "2026-06-10",
                "value": 15050.28
            },
            "rent_paid_usd": {
                "date": "2026-06-10",
                "value": 60.98
            },
            "gas_per_second": {
                "date": "2026-06-10",
                "value": 3.41
            },
            "market_cap_usd": {
                "date": "2026-06-11",
                "value": 484258664.89
            },
            "txcosts_median_usd": {
                "date": "2026-06-10",
                "value": 0
            }
        }
    },
    "meta": {
        "timestamp": "2026-06-12T01:43:06.256Z",
        "request_id": "cd01199d-528b-4340-892d-77156058893a"
    },
    "status": "ok",
    "message": "Chain retrieved successfully",
    "success": true
}