Realized Price
realized-price
Chart: Realized Price
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 | realized_price | string | Value of the Realized Price |
Example Request
https://charts.bitbo.io/api/v1/realized-price/?start_date=2025-05-07&end_date=2025-05-09
Example Request with Latest
https://charts.bitbo.io/api/v1/realized-price/?latest=true
Example Output
{
"data": [
[
"2025-05-07",
"44888.25"
],
[
"2025-05-08",
"44995.45"
],
[
"2025-05-09",
"45090.28"
]
]
}