Skip to main content

Beam

beam

Chart: Beam

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
1beamstringBeam value

Example Request

https://charts.bitbo.io/api/v1/beam/?start_date=2025-05-08&end_date=2025-05-10

Example Request with Latest

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

Example Output

{
"data": [
[
"2025-05-08",
"0.32"
],
[
"2025-05-09",
"0.32"
],
[
"2025-05-10",
"0.32"
]
]
}