NVT
nvt
Chart: NVT
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 | nvt | string | NVT (Network Value to Transactions) value |
| 2 | nvt90 | string | NVT 90-day moving average value |
| 3 | nvt_14d_ma | string | NVT 14-day moving average value |
Example Request
https://charts.bitbo.io/api/v1/nvt/?start_date=2025-05-07&end_date=2025-05-09
Example Request with Latest
https://charts.bitbo.io/api/v1/nvt/?latest=true
Example Output
{
"data": [
[
"2025-05-07",
"119.08",
"144.55",
"142.7014285714285714"
],
[
"2025-05-08",
"111.61",
"152.99",
"142.7421428571428571"
],
[
"2025-05-09",
"85.26",
"150.77",
"143.3807142857142857"
]
]
}