# Web3Identity L2 Token List with Prices and Metrics

> Web3Identity L2 Token List with Prices and Metrics is a paid API for AI agents from api.web3identity.com, paid per call via x402, $0.010000/call, status unknown (last checked 2026-09-15).

Returns a list of Layer 2 tokens with current prices, TVL, and network metrics

## Facts

- Endpoint: GET https://api.web3identity.com/api/tokens/l2
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-web3identity-com-b1bd11e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T2jcy4FO7vGHtTOqfpstc

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 api-web3identity-com-b1bd11e3
```

Example prompt: Can you pull up the current list of Layer 2 tokens with their prices and TVL from web3identity?

## When to prefer this

Use this endpoint when you need a broad list of Layer 2 tokens with prices and TVL in a single call, rather than querying individual token prices one by one. Ideal for dashboards, portfolio tools, or agents that need to survey the L2 token landscape. Prefer over single-token price endpoints when you want a holistic view of the L2 ecosystem.

## Known failure modes

- Payment required (402) if x402 micropayment of $0.01 USDC is not included
- Empty token list if L2 data source is temporarily unavailable
- Stale or outdated price data if upstream aggregators are lagging
- Network timeout if the API is under heavy load

## How this service works

Layer 2 tokens list with prices and network metrics

## Output

An array of Layer 2 token objects, each containing the token name, symbol, current price (USD), and TVL (total value locked), along with associated network metrics for the L2 ecosystem.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tokens": {
       "type": "array",
       "items": {
        "properties": {
         "tvl": {
          "type": "number"
         },
         "name": {
          "type": "string"
         },
         "price": {
          "type": "number"
         },
         "symbol": {
          "type": "string"
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-web3identity-com-b1bd11e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.web3identity.com](https://www.zero.xyz/host/api.web3identity.com/llms.txt)
