Hashrate
hashrate
Chart: Hashrate
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 | raw_hashrate | string | Raw hashrate estimate |
| 2 | hashrate_7d_ma | string | 7-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"
]
]
}