# Suverse L2Beat Scaling Summary

> Suverse L2Beat Scaling Summary is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-16).

Returns a complete snapshot of every Ethereum L2 tracked by L2Beat, including TVL/value secured, market share, 7-day change, stage classification, rollup type, and risk profile.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-l2beat-scaling-summary
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-l2beat-scaling-summary-ccc122fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2CRMVnpJEjfo5XpzuICvT

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability suverse-l2beat-scaling-summary-ccc122fc -d '<json body>'
```

Example prompt: Pull the latest L2Beat scaling summary for all tracked Ethereum L2s — I want to see their TVL, 7-day change, stage classification, rollup type, and risk profile.

## When to prefer this

Choose this endpoint when you need a comprehensive, pre-aggregated snapshot of the entire Ethereum L2 ecosystem in a single call — covering TVL, market share, stage classification, and risk — without needing to scrape or call L2Beat directly. Ideal for dashboards, research pipelines, or agents that need L2 context without building their own L2Beat integration. Keyless access via x402 micropayment makes it suitable for automated agent workflows.

## Known failure modes

- Upstream L2Beat data unavailable — service may return a 503 or empty response
- Payment not processed — x402 payment required before data is returned
- Schema mismatch — body must be a POST with valid JSON even if empty object
- Stale data — snapshot may lag real-time L2Beat by minutes to hours

## How this service works

L2Beat scaling summary: every tracked Ethereum L2 with value secured, market share, 7d change, stage classification, rollup type and risk profile. Keyless.

## Output

A structured dataset listing every Ethereum L2 tracked by L2Beat, with fields including: project name, total value locked / value secured, percentage market share, 7-day TVL change, stage classification (Stage 0/1/2), rollup type (ZK, Optimistic, Validium, etc.), and risk profile indicators.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-l2beat-scaling-summary-ccc122fc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
