Ir al contenido
GET /v1/summary

Ecosystem aggregate — TVS, Stage and type distribution

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/l2beat-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}