---
title: "Coin Days Destroyed"
method: GET
path: "/btc/network-indicator/cdd"
tags: ["BTC Network Indicator"]
---

# Coin Days Destroyed

`GET /btc/network-indicator/cdd`

Coin Days Destroyed reflects market participants who have been in the bitcoin on-chain for longer. This indicator gives more weight to long-term-holder position.
`cdd` is the sum of products of spent transaction output alive days and its value.
`sa_cdd` is abbreviation of supply-adjusted cdd.
Since `cdd` increases as the newly created block mined, we need an indicator which normalize `cdd` value. `sa_cdd` is calculated by `cdd` over `supply_total`.
`average_sa_cdd` is the average value of `sa_cdd` since genesis block.
`binary_cdd` is the signal whether current `sa_cdd` is larger than `average_sa_cdd` or not. If `sa_cdd` > `average_sa_cdd`, then `binary_cdd` is 1.
In conclusion, these indicators help us to estimate how whale's moving.


**📖 Data Guide:** [Coin Days Destroyed (CDD)](/data-guide/utxo/coin-days-destroyed-cdd) · [Binary CDD](/data-guide/utxo/binary-cdd) — definition, interpretation, and chart examples.

## Query parameters

- `window` string
- `from` string
- `to` string
- `limit` integer
- `format` string

## Response `200`

cdd

- object
  - `status` object, required — The status object is return with most of requests and indicates if the request was successful. If it is not successful, error information is included.
    - `code` integer, required — HTTP status code
    - `message` string, required — Text description of the error or success.
  - `result` object, required
    - `window` string, required — The size of window. It can be day or block, and it depends on the user request.
    - `data` object[], required
      - `blockheight` string — The height of the block. This optional field only appears when window=block is used.
      - `date` string — The date in YYYY-DD-MM. This optional field only appears when window=day is used.
      - `datetime` string — The date and time formatted as YYYY-MM-DD HH:MM:SS (UTC time). This field only appears when window=block is used.
      - `cdd` number, required — When UTxO destroyed, Coin Days Destroyed is calculated as the sum value of the number of days between created and spent multiplied by UTxO amount.
      - `sa_cdd` number, required — Supply Adjusted Coin Days Destroyed is `cdd` value adjusted by supply. It is calculated as the value of `cdd` divided by total supply.
      - `average_sa_cdd` number, required — Average Supply Adjusted Coin Days Destroyed is the historical average value of `sa_cdd` after generation block.
      - `binary_cdd` integer, required — Binary Coin Days Destroyed is binary value. When `sa_cdd` is larger than `average_sa_cdd`, `binary_cdd` is 1.

---

[API](https://skmtc.net/cryptoquant/apis/cryptoquant-data-api.md) · [All operations](https://skmtc.net/cryptoquant/apis/cryptoquant-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/cryptoquant/cryptoquant-data-api/versions/81ee223d4908/schema)
