CAGR
cagr
Chart: CAGR
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 | cagr_1y | string | CAGR 1 Year Value |
| 2 | cagr_4y | string | CAGR 4 Years Value |
| 3 | cagr_5y | string | CAGR 5 Years Value |
| 4 | cagr_10y | string | CAGR 10 Years Value |
Example Request
https://charts.bitbo.io/api/v1/cagr/?start_date=2025-05-05&end_date=2025-05-07
Example Request with Latest
https://charts.bitbo.io/api/v1/cagr/?latest=true
Example Output
{
"data": [
[
"2025-05-05",
"47.66",
"13.30",
"60.02",
"82.12"
],
[
"2025-05-06",
"52.99",
"14.44",
"60.27",
"82.99"
],
[
"2025-05-07",
"55.86",
"14.07",
"57.58",
"82.44"
]
]
}