Skip to main content

Hashrate

hashrate

Chart: Hashrate

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
1raw_hashratestringRaw hashrate estimate
2hashrate_7d_mastring7-day moving average of hashrate

Example Request

https://charts.bitbo.io/api/v1/hashrate/?start_date=2025-05-07&end_date=2025-05-09

Example Request with Latest

https://charts.bitbo.io/api/v1/hashrate/?latest=true

Example Output

{
"data": [
[
"2025-05-07",
"894406339360195483920",
"910930747843657075972"
],
[
"2025-05-08",
"942173897079248281404",
"927382450528190392172"
],
[
"2025-05-09",
"829174110395513479420",
"906586311575481677571"
]
]
}