ENERGY STAR Certified Product Finder avatar

ENERGY STAR Certified Product Finder

Pricing

Pay per usage

Go to Apify Store
ENERGY STAR Certified Product Finder

ENERGY STAR Certified Product Finder

Pulls certified-product records (brand, model, category, efficiency/spec attributes, certification date) from EPA's official ENERGY STAR open data across any of the 56 product categories (clothes washers, refrigerators, dishwashers, boilers, and more).

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Chris Hoover

Chris Hoover

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

8 days ago

Last modified

Share

Pulls certified-product records — brand, model, efficiency metrics, capacity/spec fields, and certification date — from EPA's official ENERGY STAR open data. Covers any of the 56 ENERGY STAR product categories (clothes washers, refrigerators, dishwashers, boilers, and more), pulled directly from EPA's public API and open-data portal — no browser rendering, no HTML scraping.

Use cases

  • Rebate/procurement teams — pull the current list of ENERGY STAR-certified models in a category to check rebate eligibility or build a compliant procurement shortlist.
  • Appliance market research — analyze efficiency metrics (kWh/year, water use, IMEF/IWF) and brand distribution across a certified product category.
  • ESG / green-building reporting — cross-reference model numbers against ENERGY STAR certification status for sustainability disclosures.

Input

FieldTypeDefaultDescription
productCategoriesarray of strings3 categories (see below)ENERGY STAR productUniqueName codes to scrape
maxItemsinteger100Max records per category
pageSizeinteger100Records requested per API page (up to 1000)
delaySecondsnumber1.0Polite delay before each fetch
concurrencyinteger3How many pages to fetch at once

Default productCategories: certified-clothes-washers, certified-residential-refrigerators, certified-residential-dishwashers. Any of the 56 official category codes works — see EPA's Product Finder for the full list of product types and their unique names.

Output fields

FieldTypeDescription
productCategorystringCategory code, e.g. certified-clothes-washers
productCategoryNamestringHuman-readable category name
pdIdstringEPA's internal product record ID
brandstringBrand name
modelNumberstringModel number
certificationDatestringDate the model was ENERGY STAR qualified
attributesobjectAll remaining category-specific fields — efficiency metrics, capacity/spec fields, certification/status details. These vary by product type (a washer and a boiler have different spec fields), so they're passed through as-is rather than forced into one fixed schema.
datasetSourceUrlstringThe exact EPA open-data API URL this record came from
lastSeenTimestampdateWhen this Actor fetched the record

Example output

{
"productCategory": "certified-clothes-washers",
"productCategoryName": "Clothes Washers",
"pdId": "2545602",
"brand": "AEG",
"modelNumber": "W14120",
"certificationDate": "2023-07-04T00:00:00.000",
"attributes": {
"load_configuration": "Front Load",
"volume_cubic_feet": "2.20",
"integrated_modified_energy_factor_imef": "2.07",
"annual_energy_use_kwh_year": "110",
"integrated_water_factor_iwf": "4.2",
"annual_water_use_gallons_year": "2713",
"meets_most_efficient_criteria": "No"
},
"datasetSourceUrl": "https://data.energystar.gov/resource/bghd-e2wd.json",
"lastSeenTimestamp": "2026-08-11T08:17:26.425218+00:00"
}

Pricing

$1.50 per 1,000 results.

ResultsCost
100$0.15
500$0.75
1,000$1.50
5,000$7.50

Notes

  • Data source is EPA's official, public ENERGY STAR open-data API (data.energystar.gov/resource/*.json) — the same export EPA links to from the Product Finder itself. No login, no PII, no ToS restriction found for this data.
  • maxItems applies per category, not globally — requesting 3 categories at maxItems: 100 returns up to 300 records total.