# Glassnode ETH 2.0 Total Validator Count

> Glassnode ETH 2.0 Total Validator Count is a paid API for AI agents from x402.glassnode.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns the cumulative number of unique addresses that have deposited 32 ETH to the ETH 2.0 deposit contract (total staking validators) as a daily time series.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/eth2/staking_total_validators_count
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glassnode-eth-2-0-total-validator-count-b272f66e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e-vbpmtLLMIuMPtEDN-UQ

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 glassnode-eth-2-0-total-validator-count-b272f66e
```

Example prompt: Pull the daily Glassnode data on total ETH 2.0 validator count — I want to see how many unique addresses have deposited 32 ETH to the deposit contract, returned as JSON.

## When to prefer this

Use this endpoint when you need authoritative on-chain Glassnode data specifically about ETH 2.0 validator counts — the total cumulative number of unique addresses depositing 32 ETH to the beacon chain deposit contract. Prefer this over generic staking dashboards when you need programmatic, time-series access to this metric for analysis, monitoring, or integration into dashboards.

## Known failure modes

- Missing required 'a' query parameter (must be 'ETH') returns 400 error
- Invalid format parameter 'f' (must be 'json' or 'csv') returns 400 error
- Insufficient USDC balance or x402 payment failure returns 402 Payment Required
- Rate limiting or provider downtime returns 429 or 503
- No data available for requested time range returns empty array

## How this service works

ETH 2.0 Total Number of Validators — The cumulative number of unique addresses that have deposited 32 ETH to the ETH 2.0 deposit contract. Data by Glassnode.

## Output

An array of timestamped data points (t: Unix timestamp, v: numeric value) representing the cumulative total number of unique addresses that have staked 32 ETH to the ETH 2.0 deposit contract, sampled at 24-hour intervals.

## 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": [
      "a"
     ],
     "properties": {
      "a": {
       "enum": [
        "ETH"
       ],
       "type": "string",
       "description": "Asset symbol, e.g. BTC, ETH"
      },
      "f": {
       "enum": [
        "csv",
        "json"
       ],
       "type": "string",
       "description": "Response format: json or csv"
      },
      "i": {
       "enum": [
        "24h"
       ],
       "type": "string",
       "description": "Time interval / resolution, e.g. 24h, 1w, 1month"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "t": {
        "type": "number"
       },
       "v": {
        "type": "number"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glassnode-eth-2-0-total-validator-count-b272f66e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.glassnode.com](https://www.zero.xyz/host/x402.glassnode.com/llms.txt)
