Skip to main content

2 Year HODL

2yr-hodl

Chart: 2 Year HODL

Parameters

NameTypeDescriptionRequired
start_datestringStart date in YYYY-MM-DD formatNo
end_datestringEnd date in YYYY-MM-DD formatNo
latestboolIf true, returns the current valueNo

Output

IndexNameTypeDescription
0datestringDate in YYYY-MM-DD format
12yr_hodlstringValue of the 2 Year HODL (percent)

Example Request

https://charts.bitbo.io/api/v1/2yr-hodl/?start_date=2026-04-04&end_date=2026-04-06

Example Request with Latest

https://charts.bitbo.io/api/v1/2yr-hodl/?latest=true

Code Samples

curl "https://charts.bitbo.io/api/v1/2yr-hodl/?start_date=2026-04-04&end_date=2026-04-06&api_key=YOUR_API_KEY"

Example Output

{
"data": [
[
"2026-04-04",
"48.45"
],
[
"2026-04-05",
"48.44"
],
[
"2026-04-06",
"48.44"
]
]
}