HomeAssistant-Config icon indicating copy to clipboard operation
HomeAssistant-Config copied to clipboard

Enable Tibber quarter hourly prices

Open mahoromax opened this issue 2 months ago • 0 comments

Starting October 2025, Tibber introduced quarter hourly updates to the electricity price. This only needs a tiny change in the API call, https://developer.tibber.com/docs/changelog

Packages/electricity/tibber.yaml Line 16 Change line 16 payload: '{ "query": "{ viewer { homes { currentSubscription { priceInfo { current { total currency level energy tax } today { total startsAt level } tomorrow { total startsAt level }}}}}}" }' to payload: '{ "query": "{ viewer { homes { currentSubscription { priceInfo(Resolution: QUARTER_HOURLY) { current { total currency level energy tax } today { total startsAt level } tomorrow { total startsAt level }}}}}}" }'

It seems to small of a change to create a pull request, but I was wondering whether more adaptions might be needed in other places, like for the avg and price levels....

mahoromax avatar Oct 04 '25 17:10 mahoromax