# Glassnode ETH Stake Effectiveness Mean

> Glassnode ETH Stake Effectiveness Mean 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 daily mean Stake Effectiveness ratio for Ethereum — the proportion of staked ETH actively participating in consensus (Effective Balance / Total Staked Balance).

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/eth2/stake_effectiveness_mean
- 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-stake-effectiveness-mean-8a40c75a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fyNymMymmIaO-joD1bqDP

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-stake-effectiveness-mean-8a40c75a
```

Example prompt: Pull the latest Glassnode stake effectiveness data for ETH in JSON format so I can see what proportion of staked ETH is actively participating in consensus.

## When to prefer this

Use this endpoint when you need on-chain Ethereum validator participation quality data — specifically the ratio of effective balance to total staked balance. Prefer this over raw staking volume metrics when you want to assess consensus health, validator activation lag, or PoS network participation efficiency as computed by Glassnode.

## Known failure modes

- Missing required 'a=ETH' query parameter returns a 400 Bad Request
- Invalid format value for 'f' parameter returns an error
- Payment not included or insufficient USDC results in 402 Payment Required
- Network timeouts if Glassnode data pipeline is delayed
- Rate limiting if too many requests are sent in rapid succession

## How this service works

Stake Effectiveness — Stake Effectiveness is the proportion of staked ETH actively participating in consensus, computed as the ratio of Total Effective Balance to Total Staked Balance of the Proof-of-Stake validator set. Data by Glassnode.

## Output

Returns a JSON (or CSV) array of timestamped data points, each containing a Unix timestamp ('t') and a float value ('v') representing the mean Stake Effectiveness ratio for that 24-hour period — the ratio of Total Effective Balance to Total Staked Balance across all Ethereum PoS validators.

## 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-stake-effectiveness-mean-8a40c75a/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)
