CVDD (Cumulative Value Days Destroyed)
cvdd
Chart: CDD
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
start_date | string | Start date in YYYY-MM-DD format | No |
end_date | string | End date in YYYY-MM-DD format | No |
latest | bool | If true, returns the current value | No |
Output
| Index | Name | Type | Description |
|---|---|---|---|
| 0 | date | string | Date in YYYY-MM-DD format |
| 1 | cvdd | string | CVDD value |
Example Request
https://charts.bitbo.io/api/v1/cvdd/?start_date=2026-04-06&end_date=2026-04-08
Example Request with Latest
https://charts.bitbo.io/api/v1/cvdd/?latest=true
Example Output
{
"data": [
[
"2026-04-06",
"47703.580649004756"
],
[
"2026-04-07",
"47709.740603787594"
],
[
"2026-04-08",
"47710.305117320366"
]
]
}