I have generated and processed Tibber data for today and tomorrow in Node-RED for my purposes. How do I now transfer this data using an HTTP-request node so that it can be displayed as a bar graph in a Plotly graph card in Home Assistant?
It’s not about configuring the HTTP-request node, but rather about the question of what the data format should look like so that the data arrives correctly in Home Assistant and can then be displayed.
The data is in the following format:
[
{
"time": "2025-02-07T00:00:00.000+01:00",
"total": 0.3619,
"category": "normal"
},
{
"time": "2025-02-07T01:00:00.000+01:00",
"total": 0.346,
"category": "normal"
},
{
"time": "2025-02-07T02:00:00.000+01:00",
"total": 0.3414,
"category": "normal"
},
{
"time": "2025-02-07T03:00:00.000+01:00",
"total": 0.3369,
"category": "normal"
},
{
"time": "2025-02-07T20:00:00.000+01:00",
"total": 0.363,
"category": "normal"
},
{
"time": "2025-02-07T21:00:00.000+01:00",
"total": 0.3309,
"category": "low"
},
{
"time": "2025-02-07T22:00:00.000+01:00",
"total": 0.3294,
"category": "low"
},
{
"time": "2025-02-07T23:00:00.000+01:00",
"total": 0.3311,
"category": "normal"
}
]
How do i change the format and how can i access the data in homeassistant?
Any suggestions how to do that?