Μετάβαση στο περιεχόμενο
GET /v1/summary

Ecosystem aggregate — TVS, Stage and type distribution

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/l2beat-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "source": "L2BEAT",
        "by_type": {
            "layer2": 100,
            "layer3": 16
        },
        "by_stage": {
            "Stage 0": 84,
            "Stage 1": 7,
            "Stage 2": 4,
            "Not applicable": 21
        },
        "top_by_tvs": [
            {
                "name": "Arbitrum One",
                "slug": "arbitrum",
                "stage": "Stage 1",
                "tvs_usd": 16442469376
            },
            {
                "name": "Base Chain",
                "slug": "base",
                "stage": "Stage 1",
                "tvs_usd": 11167780864
            },
            {
                "name": "Hyperliquid",
                "slug": "hyperliquid",
                "stage": "Not applicable",
                "tvs_usd": 5696788480
            },
            {
                "name": "Polygon PoS",
                "slug": "polygon-pos",
                "stage": "Not applicable",
                "tvs_usd": 4123033600
            },
            {
                "name": "OP Mainnet",
                "slug": "op-mainnet",
                "stage": "Stage 1",
                "tvs_usd": 1410632832
            },
            {
                "name": "Mantle",
                "slug": "mantle",
                "stage": "Stage 0",
                "tvs_usd": 1357096064
            },
            {
                "name": "Lighter",
                "slug": "lighter",
                "stage": "Stage 0",
                "tvs_usd": 807736192
            },
            {
                "name": "World Chain",
                "slug": "world",
                "stage": "Stage 0",
                "tvs_usd": 484973952
            },
            {
                "name": "Starknet",
                "slug": "starknet",
                "stage": "Stage 1",
                "tvs_usd": 419445632
            },
            {
                "name": "Linea",
                "slug": "linea",
                "stage": "Stage 0",
                "tvs_usd": 346784096
            }
        ],
        "by_category": {
            "Other": 85,
            "Optimium": 3,
            "Validium": 4,
            "ZK Rollup": 14,
            "Optimistic Rollup": 10
        },
        "project_count": 116,
        "total_tvs_usd": 45142752293.81
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:43.767Z",
        "request_id": "57f2ac9f-2982-4881-8422-b5c6a1a18847"
    },
    "status": "ok",
    "message": "Summary retrieved successfully",
    "success": true
}