# Glassnode ETH 2.0 Total Value Staked

> Glassnode ETH 2.0 Total Value Staked 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-13).

Returns the total amount of ETH deposited to the Ethereum 2.0 deposit contract (staking volume sum) as a daily time series.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/eth2/staking_total_volume_sum
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glassnode-eth-2-0-total-value-staked-4f1efb87
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zHa2efJhxdii5GVYV1XXn

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-value-staked-4f1efb87
```

Example prompt: What is the total amount of ETH currently staked in the Ethereum 2.0 deposit contract? Pull the daily staking volume sum from Glassnode for ETH in native units.

## When to prefer this

Use this endpoint when you need authoritative on-chain ETH2 staking data from Glassnode, specifically the total ETH deposited to the beacon chain deposit contract. Prefer this over general crypto APIs when you need high-quality, research-grade blockchain metrics with a clear per-call micropayment model and no subscription required.

## Known failure modes

- Missing required 'a' query param (asset symbol) returns 400 error
- Invalid asset symbol (non-ETH) rejected since only ETH is supported
- Insufficient USDC payment or missing x402 payment header returns 402 Payment Required
- Unsupported interval or format enum value returns 400
- Rate limiting or upstream Glassnode data unavailability returns 503

## How this service works

ETH 2.0 Total Value Staked — The amount of ETH deposited to the ETH2 deposit contract, equal to the current ETH balance on the contract. Data by Glassnode.

## Output

Returns a JSON array of timestamped data points, each containing a Unix timestamp (t) and the corresponding total ETH staked value (v), representing the cumulative ETH balance on the ETH2 deposit contract at daily resolution.

## 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"
      },
      "c": {
       "enum": [
        "native",
        "usd"
       ],
       "type": "string",
       "description": "Currency for denominated values, e.g. usd, native"
      },
      "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-value-staked-4f1efb87/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)
