# Glassnode ETH Minted Supply

> Glassnode ETH Minted Supply 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-14).

Returns the total cumulative gross amount of ETH ever minted (issued), reported before any EIP-1559 burn, at configurable time intervals.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/supply/minted
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glassnode-eth-minted-supply-f0910e4b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yxwk3V2i-JcW6NWPFN8aE

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-minted-supply-f0910e4b
```

Example prompt: Pull the Glassnode minted supply metric for ETH at a daily (24h) interval in native denomination as JSON — I want to see the total gross issuance before any EIP-1559 burn.

## When to prefer this

Use this endpoint when you need on-chain ETH issuance data specifically measuring cumulative gross mint before EIP-1559 burn adjustments, sourced from Glassnode's institutional-grade blockchain analytics. Prefer this over general crypto APIs when you need historically accurate, timestamped supply metrics with configurable intervals (24h, 1w, 1month).

## Known failure modes

- Missing required 'a' (asset) query parameter returns a 400 error
- Unsupported asset symbol (only ETH is accepted) causes a validation error
- Invalid interval value outside the allowed enum returns an error
- Payment failure or insufficient USDC balance returns a 402 Payment Required
- Network timeout or Glassnode data unavailability returns a 503 error

## How this service works

Minted Supply — The total amount of issued ETH. Reported as the cumulative gross mint, before any EIP-1559 burn. Data by Glassnode.

## Output

An array of timestamped data points, each containing a Unix timestamp (t) and the cumulative minted ETH supply value (v) representing gross issuance before EIP-1559 burns, at the requested time 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": [
        "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-minted-supply-f0910e4b/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)
