# Glassnode Coin Days Destroyed (CDD)

> Glassnode Coin Days Destroyed (CDD) 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 Coin Days Destroyed (CDD) metric for a given asset, measuring the volume-weighted age of coins spent on a given day.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/indicators/cdd
- 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-coin-days-destroyed-cdd-418dd210
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E7UAI-6VV_LLITEhNXPH_

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-days-destroyed-cdd-418dd210
```

Example prompt: Pull the Coin Days Destroyed metric for BTC from Glassnode in JSON format — I want to see how much long-term holder activity there's been on-chain.

## When to prefer this

Use this endpoint when you need on-chain behavioral data specifically measuring the age-weighted volume of coins spent — a key indicator of long-term holder activity and market conviction. Prefer this over price or volume APIs when analyzing holder capitulation, dormancy, or Bitcoin cycle tops/bottoms using Glassnode's institutional-grade data.

## Known failure modes

- Missing required asset symbol 'a' parameter returns a 400 error
- Invalid asset symbol (non-existent ticker) returns an error or empty dataset
- Unsupported currency or interval enum value returns a 400 validation error
- Insufficient payment or missing x402 payment header returns a 402 Payment Required response
- Rate limiting or upstream Glassnode data unavailability returns a 503 or timeout

## How this service works

Coin Days Destroyed (CDD) — Coin Days Destroyed (CDD) measures the volume-weighted age of coins spent on a given day. Data by Glassnode.

## Output

An array of time-stamped data points, each containing a Unix timestamp (t) and the Coin Days Destroyed value (v) for the requested asset at daily 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": {
       "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-coin-days-destroyed-cdd-418dd210/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)
