# QuietSignal L2BEAT Snapshot

> QuietSignal L2BEAT Snapshot is a paid API for AI agents from 83-29-153-50.sslip.io, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Returns a machine-readable ranked snapshot of Layer 2 blockchain projects from L2BEAT, optionally filtered by category and count.

## Facts

- Endpoint: GET https://83-29-153-50.sslip.io/v1/l2beat-snapshot
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/quietsignal-l2beat-snapshot-4d870fef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nvKNESVfKBz9q-aBxTO2e

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 quietsignal-l2beat-snapshot-4d870fef
```

Example prompt: Pull the latest L2BEAT snapshot showing the top 10 rollups ranked by TVL so I can compare Ethereum Layer 2 projects.

## When to prefer this

Choose this endpoint when an AI agent needs structured, machine-readable L2 project rankings and TVL data sourced from L2BEAT without scraping the L2BEAT website directly. It is ideal for agents that need per-request, pay-as-you-go access (via x402/USDC) without API key registration. Prefer it when you need category-filtered rollup data (rollups, validiums, others) in a normalized JSON schema ready for downstream analysis.

## Known failure modes

- Payment required (HTTP 402) if USDC payment header is missing or insufficient
- Invalid tab enum value returns a validation error
- Limit outside 1–100 range is rejected
- Upstream L2BEAT data unavailable causes stale or empty project list
- Raw IP/sslip.io hostname may trigger TLS warnings in some clients

## How this service works

QuietSignal Public Data: independent, read-only rollup, wallet, opportunity, and developer-data facts for agents, paid per request with USDC over HTTP 402 on Base.

## Output

A JSON object containing a versioned L2BEAT snapshot with a list of ranked Layer 2 projects, a project count, the source URL, schema version identifier, and a disclaimer about third-party data and commercial rights. Optionally scoped to a specific L2BEAT category tab and limited by count.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "tab": {
       "enum": [
        "rollups",
        "validiumsAndOptimiums",
        "others"
       ],
       "type": "string",
       "description": "Optional L2BEAT category filter"
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Maximum number of ranked projects to return"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "scope": {
   "project_count": 1,
   "returned_project_count": 1
  },
  "schema": "l2beat-snapshot/v1",
  "source": {
   "url": "https://l2beat.com/scaling/summary",
   "provider": "L2BEAT"
  },
  "projects": [],
  "disclaimer": "Third-party public data normalized for machine use; not investment advice. The current upstream terms do not expressly grant a commercial redistribution license; confirm commercial rights independently before scaling."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/quietsignal-l2beat-snapshot-4d870fef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 83-29-153-50.sslip.io](https://www.zero.xyz/host/83-29-153-50.sslip.io/llms.txt)
