Industry

Apps for Energy Competition Announced by the Department of Energy

By

| Reading time 4 minutes

Get ready to change the way you think about your electricity bill! The Department of Energy (DOE) just announced the details for its Apps for Energy competition.  The DOE is challenging developers to use Green Button data to create apps for residential consumers to reduce energy usage and save money.  

Competition opened Thursday, and the deadline to submit is May 15th; full details can be found on the DOE site.Apps for Energy

The DOE is looking for apps that help consumers make sense of their Green Button data.  App developers are encouraged to use a variety of data sources, and Genability is here to help.  If creating a cool app isn’t enough motivation, the DOE and its partners are offering $100,000 in cash prizes!  Judges include some impressive people, including representatives from the DOE, PG&E, Itron, Garage Technology Ventures and HUGE.

If you’re interested and need some help, Genability is here for you.  For all App for Energy developers, we’re giving you access to our pricing APIs.  Let us know if we can help!

Cost Button, the fun hack we submitted

Here’s how we announced in on May17th, 2012:

Genability is excited to introduce CostButton.com, our submission for the Apps for Energy challenge.   

As we all know, when it comes to owning a car, there is more to the cost than just the price you pay for it: maintenance, gas, and now with Electric Vehicles becoming more popular, electricity.  With CostButton.com you can see how your utility bill will be affected by charging your Electric Vehicle. We do this by taking your Green Button data and pairing it with your utility’s tariff, you select which EV you have and how full your battery is currently and BOOM! We give you the cost to charge your EV.

Want to see CostButton in action? Check out our CostButton Demo.

And if you like the app, please consider voting for CostButton here.  Thanks!

Cost Button behind the scenes

The U.S. Energy Department issued a challenge to software developers to create an app to help utility customers make the most out of the Green Button electricity usage data. At Genability, we work hard to gather energy pricing data across the United States and structure it in a way that developers can use. So we took on the challenge and decided to make a quick hack that we coded in a few hours over a couple of days. You can look through our code and implement it yourself!

Using our api, we wanted to combine the usage data from the Green Button initiative and create an app for electric vehicle owners to know how much it would cost to charge their cars.

We started by using our data uploader to take Green Button data and create an account (a home) for each new user. We thought the easiest way to do this was through email so we set up an email address that accepts Green Button files as attachments! Try it out, send a Green Button file to data@costbutton.com. If you like traditional HTML forms, you can go straight to http://www.costbutton.com/, enter your e-mail address, and upload your Green Button file that way too.

API Call: POST /rest/beta/loader/account/up.html (http://developer.genability.com/documentation/api-reference/account-api/bulk-loading/#greenButton)

<form id="upload" action="http://api.genability.com/rest/beta/loader/account/up.html?appId=[your appId]&appKey=[your appKey]&redirectPath=http://www.costbutton.com/" method="post" enctype="multipart/form-data"> </form>

If you already have an account with us, we recognize your e-mail address as soon as you type it using our find account by providerAccountId call.

API Call: GET /rest/beta/accounts?providerAccountId={accountID}

With that file, we quickly parse the information and send you back a link to our CostButton app with your account id (ex: http://www.costbutton.com/?accountId=5b7291aa-503e-4fc4-9825-5d5931a36428). With that account id, we can hit our api and retrieve your likely tariff and show a graph visualizing your personal usage data.

API Call: GET /rest/beta/accounts/{accountId}

API Call: GET /rest/public/tariffs/{masterTariffId}

var url = “http://api.genability.com/rest/public/tariffs/” + tariffId + “?appId=[your appId]&appKey=[your appKey]”; $.getJSON(url, function(data) { if (data.status == “success”) { if (data.results[0].lseName) { lseName = data.results[0].lseName; }

if (data.results[0].tariffName) { tariffName = data.results[0].tariffName; }



if (data.results[0].tariffCode) { tariffCode = data.results[0].tariffCode; }

API Call: GET /rest/beta/usage/profiles/{usageProfileId}

Now, you can select an electric vehicle (we started with the Chevy Volt, Nissan Leaf, Toyota Prius, Tesla Roadster, and Tesla Model S), tell us how full your battery is, and let us do all the rest. Not only do we tell you how long it’s going to take to charge your batter, but we tell you the dollar amount you can epect to see on your electricity bill using our price call!

API Call: GET /rest/public/prices/{masterTariffId}

We also let you know how much you can expect to pay in an avearge year…this is very useful if you’re trying to decide which electric vehicle to purchase. Simple and easy…taking the hard work and guessing out of electricty charges. The app is live and our submission is in so you can vote for us daily on the apps for energy website here.

There are also other great apps using our api to do the dirty work…check them out!

Also in Industry

Genability Supports Fast-Growing Green Button Data from the DOE

By Eric Danziger | Mar 23, 2012

24 hours after the Green Button initiative was announced in January, Genability Explorer and APIs supported the Green Button XML format, and with good reason.  The two requirements for precise electricity pricing are correct tariff data and...

An Insight into Net Metering

By Carson Riley | Mar 16, 2012

While net metering is nothing new in the world of energy, for the past 20 years, more and more investor and state owned utilities have been expanding these policies to make it easier for consumer to become...

Cleanweb Hackathon 2012

By Emile Baizel | Dec 24, 2011

In 2012 we were thrilled to be a sponsor of the Cleanweb hackathon in New York.  The event was the weekend of 1/21 - 1/22 and, among others, was organized by Spring Ventures and Dynamo following on...

History of Home Energy Management Systems

By Robb Miller | Oct 24, 2011

In 2011 there was a battle brewing among electronics retailers (Best Buy, Home Depot, and others), Telecommunications Companies (Verizon, AT&T & others) and Cable Companies (Comcast, others). The battle is for the control of your home, or...