# Glassnode ETH Burned Supply Metric

> Glassnode ETH Burned Supply Metric 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 sum of ETH destroyed by the EIP-1559 base-fee burning mechanism since the London Hard Fork, at configurable time intervals.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/supply/burned
- 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-burned-supply-metric-f97ede08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6RSM_yruo_P1aZDlmGwZw

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-burned-supply-metric-f97ede08
```

Example prompt: Can you pull the Glassnode ETH burned supply data for me at a weekly interval in native ETH units, in JSON format?

## When to prefer this

Use this endpoint when you need on-chain Ethereum supply reduction data specifically tied to the EIP-1559 fee burn mechanism, sourced from Glassnode's institutional-grade blockchain analytics. Prefer this over general crypto price APIs when the user needs cumulative burned supply figures rather than price or market cap data.

## Known failure modes

- Missing required asset parameter 'a=ETH' returns a 400 or validation error
- Invalid interval value returns an error (only 24h, 1w, 1month supported)
- Payment not sent or insufficient USDC triggers a 402 Payment Required response
- Invalid currency or format enum value causes a query rejection
- Service unavailable or Glassnode data outage returns 5xx error

## How this service works

Burned Supply — Burned Supply is the cumulative sum of ETH destroyed by the EIP-1559 base-fee mechanism since the London Hard Fork activated it. Data by Glassnode.

## Output

An array of timestamped data points, each containing a Unix timestamp (t) and a numeric value (v) representing the cumulative ETH burned by the EIP-1559 base-fee mechanism at that point in time, returned in JSON or CSV format.

## 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": [
        "1month",
        "1w",
        "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-burned-supply-metric-f97ede08/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)
