Supply in Profit
supply-in-profit
Chart: Supply in Profit
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 | supply_in_profit | string | Percentage of supply in profit |
Example Request
https://charts.bitbo.io/api/v1/supply-in-profit/?start_date=2025-05-07&end_date=2025-05-09
Example Request with Latest
https://charts.bitbo.io/api/v1/supply-in-profit/?latest=true
Example Output
{
"data": [
[
"2025-05-07",
"92.05"
],
[
"2025-05-08",
"98.26"
],
[
"2025-05-09",
"97.88"
]
]
}