Detailed data view
-
Just joining this thread as I have emailed eon next asking this question. Is there an update on when a detailed data provision will be available?
-
Any more news? can i ask what the hold up is? as since January i have been able to connect my Electric smart meter to Samsung Smartthings to view the Daily & Hourly usage, but not the 30 minute usage? from what i am aware the smartmeter data is centrally stored thats where energy companys access the data from?
-
It has been over a year since the first post on this thread, duting that time electricity prices have increased dramatically, the best fixed deal available now is a whopping FIVE TIMES the price back then.
When will the half hourly data be available? We need need a fixed date rather than a vague "....workin' on it..."
Cynics would say you don't want people to have access to thier usage data, as they may use it to reduce thier usage and damage your profits.
The same cynics would point to the SM/IHD which you provide, knowing full well the signal is so weak it cannot penetrate a masonry wall. -
The Silence Deafens. I have found the only way to get a response (e.g. to get them to start taking reading from the meter) from E.ON is to raise a complaint, so that's what I'll do.
-
Hi there, I'm jumping into the wagon. I would be extremely ken of viewing my usage online or least to have access to API that I can fetch to Grafana. I'm developer myself and waiting for a feature to be delivered over 2 years is definitely excessive... New name, technology but still inefficient waterfall behind the scene.
-
I don't think regular customer support will be able to assist you with such queries. I do not have a smart meter so I cannot test it out correctly but their API indicates we are able to tap into it.
Step 1: Login to EON next website and press F12 when using chrome and then navigate to Network tab. Find your authorization token
Step 2: Find your MPAN and Meter serial number (both can be found in the meter reading and billing sections)
Step 3: get postman or any similar tool and do the following
GET method
URL https://api.eonnext-kraken.energy/v1/electricity-meter-points/{mpan}/meters/{serialnumber}/consumption/
Header: authorization JWT xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Replace {mpan} and {serialnumber} with actual values
The expected result should be
{
"count": 48,
"next": null,
"previous": null,
"results": [
{
"consumption": 0.063,
"interval_start": "2018-05-19T00:30:00+0100",
"interval_end": "2018-05-19T01:00:00+0100"
},
{
"consumption": 0.071,
"interval_start": "2018-05-19T00:00:00+0100",
"interval_end": "2018-05-19T00:30:00+0100"
},
{
"consumption": 0.073,
"interval_start": "2018-05-18T23:30:00+0100",
"interval_end": "2018-05-18T00:00:00+0100"
}
]
}
Please let me know if it works.
Last edited by Matobato; 06-10-22 at 13:26. Reason: small correction
-
I can't say I fully understand the issue here. I can see my half-hourly usage for both gas and electric. I have set my smart meter to send half-hourly readings and downloaded the Hildebrand Bright App where I can see my consumption for every half hour interval going back a year.I'm an Eon Next dual fuel customer with no particular expertise but have some time on my hands that I am using to try and help out a bit.
-
Thanks @Matobato, that works great.