Hi,
My electricity provider provides a REST api which returns the aggregated energy used in kWh per each hour for the previous day.
The response is just a simple json array similar to this:
[
{
hour: 1,
ekwh: 0,
},
{
hour: 2,
ekwh: 0,
},
...
{
hour: 12,
ekwh: 2.2,
},
...
{
hour: 24,
ekwh: 0,
}
]
I’d like to know if HA has OOTB facilities to fetch and render this data on a graph.
Thanks,
Juan