Hash Ribbons
hash-ribbons
Chart: Hash Ribbons
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 ISO format |
| 1 | hash_rate_value | string | Hash Rate Value |
| 2 | hash_ribbon_30d_value | string | Hash Ribbon 30-day Moving Average |
| 3 | hash_ribbon_60d_value | string | Hash Ribbon 60-day Moving Average |
Example Request
https://charts.bitbo.io/api/v1/hash-ribbons/?start_date=2025-05-07&end_date=2025-05-09
Example Request with Latest
https://charts.bitbo.io/api/v1/hash-ribbons/?latest=true
Example Output
{
"data": [
[
"2025-05-07",
"894406339360195483920",
"872167819606241487523",
"858388199576517588443"
],
[
"2025-05-08",
"942173897079248281404",
"872730117492888101371",
"859446879588500133785"
],
[
"2025-05-09",
"829174110395513479420",
"873972087196479808935",
"858956333634005753159"
]
]
}