# Glassnode Supply-Adjusted Dormancy

> Glassnode Supply-Adjusted 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 daily time-series data for Bitcoin's Supply-Adjusted Dormancy — the ratio of coin days destroyed to total transfer volume, normalized by circulating supply.

## Facts

- Endpoint: GET https://x402.glassnode.com/v1/metrics/indicators/average_dormancy_supply_adjusted
- 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-supply-adjusted-dormancy-d4af0cc3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HLaytuJmqKjvFs-6OAIzi

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-supply-adjusted-dormancy-d4af0cc3
```

Example prompt: Pull the latest daily Supply-Adjusted Dormancy data for Bitcoin from Glassnode — I want to see how the average coin dormancy looks normalized against circulating supply in JSON format.

## When to prefer this

Use this endpoint when you need supply-normalized dormancy data specifically — i.e., when you want to understand coin aging behavior relative to the size of circulating supply, rather than raw coin days destroyed. Prefer this over raw CDD or average dormancy endpoints when doing supply-adjusted analysis to remove inflation bias in growing supply chains.

## Known failure modes

- Missing required 'a' query parameter returns 400 Bad Request
- Unsupported asset symbol (non-BTC) returns validation error since only 'BTC' is accepted
- Payment not included or insufficient USDC results in 402 Payment Required
- Invalid format parameter returns error; only 'json' or 'csv' accepted
- Network timeout or Glassnode upstream unavailability returns 5xx error

## How this service works

Supply-Adjusted Dormancy — Supply-Adjusted Dormancy is the supply-normalized form of Average Coin Dormancy, 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

A JSON array of time-series objects, each containing a Unix timestamp ('t') and the supply-adjusted dormancy value ('v'), representing daily observations of coin days destroyed divided by total transfer volume, normalized by BTC circulating supply.

## 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-supply-adjusted-dormancy-d4af0cc3/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)
