you could return the js timestamp of the start hour and the value.
e.g.
[{"id":"35eb22f321d14cdc","type":"inject","z":"bf9e1e33.030598","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"10","payloadType":"num","x":190,"y":3880,"wires":[["92cb805f.88deb"]]},{"id":"92cb805f.88deb","type":"http request","z":"bf9e1e33.030598","name":"","method":"GET","ret":"txt","paytoqs":"ignore","url":"https://usagedata.dteenergy.com/link/E3E1B93D-4349-48FD-8289-566E8FB37B01","tls":"","persist":false,"proxy":"","authType":"","x":310,"y":3960,"wires":[["50215da8.3ebfa4"]]},{"id":"50215da8.3ebfa4","type":"xml","z":"bf9e1e33.030598","name":"","property":"payload","attr":"","chr":"","x":480,"y":3960,"wires":[["45ea9f11.2d206"]]},{"id":"45ea9f11.2d206","type":"change","z":"bf9e1e33.030598","name":"","rules":[{"t":"set","p":"payload","pt":"msg","to":"$$.payload.feed.entry[4].content[0].IntervalBlock[*].IntervalReading.{\t \"Value\": $number($.value[0]), \"time\":$number($.timePeriod[0].start[0])*1000}","tot":"jsonata"}],"action":"","property":"","from":"","to":"","reg":false,"x":560,"y":3960,"wires":[["252eefed571911b3"]]},{"id":"252eefed571911b3","type":"debug","z":"bf9e1e33.030598","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":710,"y":3960,"wires":[]}]
JSONata expression
$$.payload.feed.entry[4].content[0].IntervalBlock[*].IntervalReading.{
"Value": $number($.value[0]),
"time":$number($.timePeriod[0].start[0])*1000
}
This should return 8927 values and timestamps.
The timestamp could be further parsed if needed