Solved

Can we get access to the OVO energy online account API to download our smart meter usage data?


Userlevel 2
  • New Member***
  • 0 replies

Hi Ovo,

I wondered whether the API that powers your live and historical usage page in the account menu is something you could look into opening up a bit so we can freely access our raw data and also perhaps it may stimulate some interesting community projects?

For instance (more sport related), Strava and Fitbit.

icon

Best answer by g-de 27 August 2020, 19:02

View original

112 replies

Userlevel 1

For those interested in something like this being easily accessible I’ve made a terrible walkthrough of how to do so. hope you don’t mind me posting this Tim.

https://github.com/ThePaulAdams/OvOEnergy

https://www.thepauladams.com/blog/2020/02/24/ovo-energy-integration-to-smart-home-dashboard/

@TerryE I tried to run your script but it’s erroring for me - something is wrong with the authentication.   Does the password field need to be in a certain format?   I left all of the quotes in place.

 

pi@raspberrypi:~/Documents $ python2 energy.py 
Date,00:00,00:30,01:00,01:30,02:00,02:30,03:00,03:30,04:00,04:30,05:00,05:30,06:00,06:30,07:00,07:30,08:00,08:30,09:00,09:30,10:00,10:30,11:00,11:30,12:00,12:30,13:00,13:30,14:00,14:30,15:00,15:30,16:00,16:30,17:00,17:30,18:00,18:30,19:00,19:30,20:00,20:30,21:00,21:30,22:00,22:30,23:00,23:30
{"message":"No refresh token cookie or authorization header sent","redirect":"https://my.ovoenergy.com"}
Traceback (most recent call last):
File "energy.py", line 86, in <module>
main()
File "energy.py", line 78, in main
ovo = OVOreadings(USERNAME, PASSWORD)
File "energy.py", line 50, in __init__
self.account = json.loads(resp.content)['accountIds'][0]
KeyError: 'accountIds'
pi@raspberrypi:~/Documents $

 

Userlevel 7
Badge +2

Can I point out that the “new” Billing Software, which is the connection point to our Smart Meters, is still undergoing development and bug-eradication. Any script which tries to lift data from the online Usage pages will need to be continually updated to match the current Billing Software version.

To make it even more tricky, it’s becoming apparent that not all customers are running the same software version. See this discussion about the Zero-in option.

My current Online Usage interface has changed further since that discussion. Not only do I not have a Zero-in Option, but there is no longer the ability to choose Yearly or Monthly from the Usage entry on the let menu.

 

I’m afraid we’re chasing a moving target.

Userlevel 4

… Any script which tries to lift data from the online Usage pages will need to be continually updated to match the current Billing Software version.

To make it even more tricky, it’s becoming apparent that not all customers are running the same software version. See this discussion about the Zero-in option.

 

Yes any script will need to be updated as the online interface changes, but I have only updated mine once in the last 3 years., and this latest one still works for me.  I don’t know about zero-in and am not interested as I have a near zero-energy new build and track all of my energy use through my own home automation system.

As to @uvarvu ‘s Q I use a password keeper / generator for my online passwords which generates strong passwords and these will often need quoting using the r’’’password’’’ syntax as below:

 PASSWORD = r'''D#adR'xGFj{Ks";=$'''

Also note that I have an electricity-only supply and the script may need tweaking for multiple supplies.

Userlevel 1

If anyone else is still looking for this, Home Assistant just added support for OVO in the latest release (0.114). Details on the integration can be found here: https://www.home-assistant.io/integrations/ovo_energy/

This uses the “ovoenergy” library which can be found here: https://pypi.org/project/ovoenergy/

The only problem is data is only available from OVO up to the previous day. I suspect there is some overnight batch process to format the data for the frontend.

Edit: Actually it seems OVO turned off real-time data years ago as it was “unreliable”:

 

Userlevel 7

Brilliant post here, @g-de - can you help me understand if the links above allow users to access raw data as if from an API?

 

As you can probably tell, I am not very computer literate. I am however decent at communities, so this has sparked my interest in that I feel it might help potentially everyone who has commented on this topic. Give us some more info, and I might need to re-assign the ‘best answer’ to your topic.  :) 

Userlevel 7
Badge +2

Well we could ask @Jequinlan to interpret for you @Tim_OVO :wink:

Userlevel 1

Updated on 25/09/23 by Abby_OVO: Please be advised that the information below relates to user generated open source software that is unsupported by OVO Energy. We recommend members use the online account where you can now download your usage data into a CSV format. More details here: 

 

can you help me understand if the links above allow users to access raw data as if from an API?

I can certainly give it a go.

 

Firstly, big thanks to Timmo and other contributors for developing the library. All thanks go to them and links to buy them a coffee for their effort can be found on PyPi or GitHub:

https://pypi.org/project/ovoenergy/
https://github.com/timmo001/ovoenergy

 

I assume the way the library was developed this was to reverse engineer the My OVO website. That is, browse the website as normal and and monitor the traffic to see what OVO URLs and APIs it uses. Assuming this is the case, one of these URLs (get account IDs) already seems to be different but the library is still working for the moment. The APIs being used are not officially supported outside of the website, so first, a warning that any changes to the My OVO website may break the library.

 

For anyone using Python, you should be able to include the ovoenergy library and look at https://github.com/timmo001/ovoenergy/blob/master/ovoenergy/cli.py for how to use it.

 

For replicating this in other languages, the process seems to be as follows:

  1. Login by sending a POST request to https://my.ovoenergy.com/api/v2/auth/login with the following JSON in the body:
    {
    "username": "...",
    "password": "...",
    "rememberMe": true
    }

    From the response, save the cookies to use in all future requests.

  2. Next, send a GET request to https://smartpaym.ovoenergy.com/api/customer-and-account-ids . Be sure to save the items in the “accountIds” property (usually only one item).
  3. Finally, make a GET request to https://smartpaym.ovoenergy.com/api/energy-usage/daily/{accountId}?date={yyyy-MM} where {accountId} is the value from the previous request and {yyyy-MM} is the month in the format 2020-08.

You can also get monthly or half-hourly usage using the following URLs similar to step 3:

As mentioned above, if this is wanted for Home Assistant, the integration was added in version 0.114 (https://www.home-assistant.io/integrations/ovo_energy/).


Unfortunately the data only goes up to the end of the previous day as OVO no longer provide real-time data:

 

Userlevel 7
Badge +3

This is absolutely brilliant all. I shall look and see if i can use this over next month or so to see if it can help model a TOU tariff price modler. Awesome!

Userlevel 7
Badge +3

So I have installed the HomeAssistant on a virtual Pi and am indeed able to get some OVO data! As I am not a programmer, actually getting the data from the API isn’t my expertise but if someone can help then I AM the right (type of) person to be taking that data and doing something useful with it. @g-de can you help?

 

Thanks.

Userlevel 7
Badge +2

And whilst we’re at it, let’s tag @NinjaGeek too. He might want to playing with this as well.

Userlevel 7

Wowza this is great. @g-de I’m going to make your latest comment the ‘best answer’, which will mean it appears at the top of this topic below the question. Good to see @Jequinlan willing and able to support! 

 

I will be checking in with our devs though, to see if there’s any implications for customers using this. It might not be something we can stop, but it might not be something we want to promote. The fact that I’m unaware just shows how limited my knowledge is. 

 

Either way, a brilliant post sharing some great work that’s aimed at helping others to monitor their energy usage (and other use cases?). That’s what this community is allll about :)

Userlevel 1

So I have installed the HomeAssistant on a virtual Pi and am indeed able to get some OVO data! As I am not a programmer, actually getting the data from the API isn’t my expertise but if someone can help then I AM the right (type of) person to be taking that data and doing something useful with it. @g-de can you help?

 

Thanks.

@Jequinlan Unfortunately I don’t think I’ll be much help on this. I’m not too familiar with Python, only enough to be able to read it and do basic stuff and my home assistant experience is all around setup and automation rather than data science. I suspect the data collection in home assistant may be too brief for this purpose (by default it only keeps 3 days I think).

That being said, there’s a data science section on the Home Assistant website which may be of use: https://data.home-assistant.io/

Alternatively, someone here can probably create a small python script using the library to output the data to CSV. Should make it fairly easy to import into something else then.

 

Wowza this is great. @g-de I’m going to make your latest comment the ‘best answer’, which will mean it appears at the top of this topic below the question.

Glad I could help!

 

I will be checking in with our devs though, to see if there’s any implications for customers using this. It might not be something we can stop, but it might not be something we want to promote.

I think the main issues would be the API changing unexpectedly and storage of the username and password. If OVO were to have provided some kind of developer API it would have allowed use of tokens and permissions to be configured for read-only access instead. Much more secure but quite a bit of dev and management effort for OVO.

It is unsupported and rather hacky so the choice will probably be to not promote it. Preventing it would be rather difficult. The open source community always seems to find a way around any restrictions :slight_smile:

Userlevel 7
Badge +2

The whole issue goes away once OVO release IHDs with CAD via WiFi. So I can’t see anyone committing programmer time to it.

Userlevel 7
Badge +3

I Whatsapped my friend, a programmer, who likes little challenges, he is just getting back from holiday but read this post and reckons its under an hours work so it taking it on for me as a customisable and sharable dev! Fingers xed we will all ve able to download and analyse the info in detail!

Userlevel 7
Badge +2

What about his pay?  :beer:  :wink:

Userlevel 7
Badge +3

@Transparent we work on helping each other ;)

Userlevel 7
Badge +2

Well in that case it’s :beers:  :tropical_drink:   :wine_glass:  :champagne:  :champagne_glass:  

Userlevel 4

For replicating this in other languages, the process seems to be as follows:

  1. Login by sending a POST request to https://my.ovoenergy.com/api/v2/auth/login with the following JSON in the body:
    {
    "username": "...",
    "password": "...",
    "rememberMe": true
    }

    From the response, save the cookies to use in all future requests.

  2. Next, send a GET request to https://smartpaym.ovoenergy.com/api/customer-and-account-ids . Be sure to save the items in the “accountIds” property (usually only one item).

 

 

The issue with caching the cookies is that authorisation cookies have a lifetime.  IIRC, it’s 31 days, so your code still needs to handle cookie expiry and do reauthentication.  You might find it simpler just to do the authentication every time or to have a separate (say weekly) process to refresh the authentication cookie.

Userlevel 7
Badge +3

We are getting there! 

May be a bit longer but getting there with a reusable easy download:

 

Userlevel 7

And whilst we’re at it, let’s tag @NinjaGeek too. He might want to playing with this as well.

 

Just in case you missed this, @NinjaGeek - check out the latest in this thread and the work done by @g-de@Jequinlan, Timmo and other contributors

Userlevel 7
Badge +3

As a small update, A rival who offers TOU have published a download file for rates, so I can start the work on the comparison model!

Userlevel 7

Hey coders,

 

We might have an update on this in the not too distant future, I can’t share any more just yet, but it’s being looked into.

 

More to come on this in 2020….

Userlevel 7
Badge +3

@Tim_OVO @Transparent @TerryE @andsee @SianiAnni 

 

Here is it: The API exe I promised that takes all that HH data and nicely formats it into a consumable Sheet

 

https://drive.google.com/drive/folders/1A7XRov0579O53T8OsIGe3wXCk09jul0F?usp=sharing

 

Download all the files, and read the Readme! (oh, and Enjoy) - now I can start work on ther TOU comparison tool!! 

 

If anyone is willing to send me their export please do!  - It will help me build the tooling.

John (at) QuinlanServices (dot) Com 

Userlevel 5

Thanks @Jequinlan Have got it working, and it confirms last HH gas data was logged on 19 August 23:30!

What’s the TOU comparison tool you’re working on next?

Reply