# Glassnode ETH 2.0 New Staking Volume (Sum)

> Glassnode ETH 2.0 New Staking Volume (Sum) 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 total amount of ETH newly transferred to the ETH 2.0 deposit contract over a given period, representing new validator staking activity.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/eth2/staking_volume_sum
- 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-new-staking-volume-sum-cd7f86e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NSluYbd2cr8HX-Ws-1mse

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-new-staking-volume-sum-cd7f86e7
```

Example prompt: Can you pull the Glassnode data on how much new ETH was staked to the ETH 2.0 deposit contract over the last 24 hours, in native ETH units?

## When to prefer this

Use this endpoint when you need on-chain data specifically about the volume of new ETH flowing into the ETH 2.0 beacon chain deposit contract over time. Prefer this over generic staking APIs when you need Glassnode-sourced, institutional-grade blockchain analytics with daily resolution and the ability to denominate values in native ETH or USD.

## Known failure modes

- Missing required 'a' query parameter (must be 'ETH') returns a 400 error
- Invalid or unsupported interval value returns an error
- Payment not provided or insufficient USDC balance triggers 402 Payment Required
- Rate limiting or quota exceeded returns 429
- Upstream Glassnode data unavailability returns 503

## How this service works

ETH 2.0 Amount of New Value Staked — The total amount of ETH transferred to the ETH 2.0 deposit contract during the period. Data by Glassnode.

## Output

Returns a time-series array of objects each with a Unix timestamp (t) and the total volume of ETH newly deposited to the ETH 2.0 staking contract during that 24-hour period (v), either in native ETH or USD denomination.

## 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-new-staking-volume-sum-cd7f86e7/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)
