# Glassnode Average Coin Dormancy

> Glassnode Average Coin Dormancy 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 average number of days destroyed per coin transacted (coin days destroyed divided by total transfer volume) for a given crypto asset.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/indicators/average_dormancy
- 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-average-coin-dormancy-c7279d40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UbIcBbEBiq06WMZW1GvHL

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-average-coin-dormancy-c7279d40
```

Example prompt: Pull the Glassnode average coin dormancy metric for BTC over the last 24h in native units so I can see how many days are being destroyed per coin transacted right now.

## When to prefer this

Use this endpoint when you need the average coin dormancy metric specifically — i.e., the ratio of coin days destroyed to transfer volume — as a measure of how actively long-held coins are being spent. Prefer this over raw CDD when you want a volume-normalized dormancy signal rather than absolute coin days destroyed.

## Known failure modes

- Missing required 'a' (asset) parameter returns a 400 error
- Unsupported asset symbol returns an empty or error response
- Invalid interval or format enum value causes a 400 validation error
- Payment of 0.05 USDC not completed or x402 auth failure returns 402 Payment Required
- Rate limiting or upstream Glassnode data unavailability returns 503

## How this service works

Average Coin Dormancy — Average Coin Dormancy is the average number of days destroyed per coin transacted, defined as the ratio of coin days destroyed to total transfer volume. Data by Glassnode.

## Output

An array of timestamped data points, each containing a Unix timestamp (t) and the average dormancy value (v) representing the average number of coin-days destroyed per coin transacted in the specified 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": {
       "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-average-coin-dormancy-c7279d40/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)
