# Glassnode Coin Blocks Destroyed Metric

> Glassnode Coin Blocks Destroyed 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-14).

Returns daily Coin Blocks Destroyed values for Bitcoin, measuring the economic weight of coins by multiplying coin quantity by blocks since last spend

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/indicators/coin_blocks_destroyed
- 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-coin-blocks-destroyed-metric-633a0c46
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WFPfEJ42nH-qwuVRZo3en

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-coin-blocks-destroyed-metric-633a0c46
```

Example prompt: Pull the latest Coin Blocks Destroyed data for Bitcoin from Glassnode — I want the 24-hour interval figures in native units as JSON so I can see how much economic weight is being moved on-chain.

## When to prefer this

Use this endpoint when you need to analyze Bitcoin's economic activity by weighting coins both by quantity and by time since last spent — particularly useful for assessing dormancy, long-term holder behavior, and on-chain economic weight. Prefer over simple transaction volume or coin days destroyed when you need the raw block-weighted metric rather than supply-adjusted variants.

## Known failure modes

- Missing required asset parameter 'a' returns a 400 validation error
- Unsupported asset symbol (non-BTC) returns an enum validation error
- Payment not processed or expired x402 token returns a 402 Payment Required error
- Invalid format or interval enum value returns a 400 error
- Network timeout or upstream Glassnode data outage returns a 503 or 504 error

## How this service works

Coin Blocks Destroyed — Coin Blocks Destroyed for any given transaction is calculated by taking the number of coins in a transaction and multiplying it by the number of blocks it has been since those coins were last spent. Data by Glassnode.

## Output

Returns a time series array of objects each containing a Unix timestamp (t) and the Coin Blocks Destroyed value (v) for that period, reflecting Bitcoin's economic dormancy and spending weight over the requested interval.

## 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": [
        "BTC"
       ],
       "type": "string",
       "description": "Asset symbol, e.g. BTC, ETH"
      },
      "c": {
       "enum": [
        "native"
       ],
       "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-coin-blocks-destroyed-metric-633a0c46/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)
