This repo contains structured data about home electrification incentives in the US, and an API server that calculates which incentives a user is eligible for.
See public API docs at https://docs.rewiringamerica.org/.
An instance of this API is live at https://api.rewiringamerica.org. An API key is required to use it; sign up for a key here.
-
(Optional) If you want the server to be able to accept addresses as well as ZIP codes, you'll need to get an API key for Geocodio. (RA employees: there's one in the internal password manager.)
-
Create a file called
.env
at the root of your working copy:GEOCODIO_API_KEY=<YOUR_GEOCODIO_API_KEY>
If you don't have a Geocodio key, just put nothing after the equals sign.
-
Install Node 18. We recommend using NVM.
-
Install Yarn by running
corepack enable
. -
Run
yarn install
to install dependencies. -
Run
yarn build
to build the SQLite database of geographic and income data. -
Run
yarn tsc
to compile TS scripts -
Run
yarn dev
to run the API server. It will automatically reload whenever you modify code. The server listens on port 3000 by default.
See CONTRIBUTING.md for a guide to the codebase.
You can run the API server as a Docker container, without setting up a development environment.
🚨 We strongly recommend that you use Rewiring America's public API instance, rather than deploying your own instance. We update incentive data at least once a week, and it's important to keep up with those changes. If our public API doesn't meet your needs, please contact us to discuss.
-
Run
docker build .
to build the image. -
The container listens for HTTP requests on port 8080.
-
If you have a Geocodio API key, put it in the environment variable
GEOCODIO_API_KEY
to enable the API server to accept addresses as well as ZIP codes. -
The server does not deal with access control (e.g. API keys) or rate limiting. Rewiring America's public API instance uses Zuplo to handle those concerns.
There is also a Fastify plugin to handle CORS, but it's enabled only when
NODE_ENV !== 'production'
, because RA's public API instance also uses Zuplo to handle CORS.
Aligning to our mission, the scope of the incentive data we have collected so far is representative of the following household types and technologies.
Household Type:
- Only Residential and Single-family households
Technology (Appliances / Product):
- Heat pumps (heating and cooling) HVAC (includes all types of heat pumps such as Air-to-water heat pumps, Ductless heat pumps, Ducted heat pumps, Air source heat pumps, Mini-split heat pumps)
- Geothermal / Ground Source Heat Pump
- Heat Pump Water Heater (HPWH)
- Electric Stoves / Induction Cooktop
- Heat Pump Dryers / Electric Clothes Dryer
- Electric Vehicles (new and used)
- Electric Vehicle chargers
- Rooftop Solar
- Battery Storage
- Weatherization (includes insulation, windows, and air sealing etc)
- Electric wiring (electric upgrades / retrofits)
- Electric panel (electric upgrades / retrofits)
- Electric lawn equipment (mower, edger, leaf blower, weed whacker)
- Smart Thermostat
- E-Bike
Incentive data is managed in Rewiring America's Home Electrification Resource Organizer (HERO), and periodically exported to this repo as JSON. This export happens at least once per week.
Refer to the Incentive data model definition, and to the public API docs, to understand the meaning of the data fields.
We expect the data model to evolve incrementally as we gather more comprehensive information about incentive programs nationwide, and as our requirements for detail and structure in the data change.
🚧 Our capacity to accept contributions is limited. We're not currently set up for external contributions of new incentive data, though we're working towards it.
That said, there are two situations we consider to be serious bugs, of which we gladly welcome reports:
- False positive eligibility results. That is: the API returning an incentive, given a specific set of inputs that would make someone ineligible for that incentive. If you see this, please file an issue.
- Incorrect incentive information. For example, if the calculator is showing the wrong amount for an incentive, or a description is inaccurate, or a link is broken, please file an issue.
In general, we know that our incentive coverage is incomplete, and we're working to change that. However, we expect the coverage we have to be accurate, and if it's not, we want to fix that as soon as possible.
We also welcome reports of bugs that don't pertain to incentive data, such as unexpected errors from the API. Please file issues for these.
For further information, including guidance on working on code, see CONTRIBUTING.md.
See the Contributing section for specific situations where we'd like you to file an issue.
For other matters, you can email us at api@rewiringamerica.org
.
For FAQs, refer to the Incentive Calculator FAQ page.