Fuel Economy & Vehicle Specs Scraper (EPA FuelEconomy.gov) avatar

Fuel Economy & Vehicle Specs Scraper (EPA FuelEconomy.gov)

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Fuel Economy & Vehicle Specs Scraper (EPA FuelEconomy.gov)

Fuel Economy & Vehicle Specs Scraper (EPA FuelEconomy.gov)

Scrape the US Department of Energy's official FuelEconomy.gov database with EPA-verified fuel economy ratings, engine specs, emissions scores, and cost estimates for every vehicle sold in the US since 1984. No API key required.

Pricing

from $3.00 / 1,000 results

Rating

5.0

(7)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

7

Bookmarked

2

Total users

1

Monthly active users

6 days ago

Last modified

Share

Extract official EPA fuel economy ratings, engine specifications, emissions scores, and annual fuel cost estimates from the US Department of Energy's FuelEconomy.gov database. Covers every vehicle sold in the United States from 1984 to 2027, including electric vehicles, hybrids, and plug-in hybrids.

No API key required. Data is 100% free and publicly available.

What You Get

Each scraped record contains:

FieldDescription
vehicleIdUnique FuelEconomy.gov vehicle ID
urlDirect link to the vehicle's fuel economy comparison page
yearModel year
makeVehicle manufacturer (e.g. Toyota, Ford)
modelModel name (e.g. Camry, F-150)
baseModelBase model name without trim
vehicleClassEPA vehicle class (e.g. Midsize Cars, SUV, Pickup Trucks)
driveDrivetrain (FWD, RWD, AWD, 4WD)
transmissionTransmission type (e.g. Automatic (S8))
cylindersNumber of engine cylinders
displacementEngine displacement in liters
engineDescriptionEngine technology description
fuelTypePrimary fuel type
fuelType2Secondary fuel type (PHEVs / FFVs)
mpgCityCity fuel economy (MPG)
mpgHighwayHighway fuel economy (MPG)
mpgCombinedCombined fuel economy (MPG)
mpgeCityAltCity MPGe for alternative fuel (EVs / PHEVs)
mpgeHwyAltHighway MPGe for alternative fuel
mpgeCombinedAltCombined MPGe for alternative fuel
co2GramsPerMileCO₂ tailpipe emissions in grams per mile
fuelEconomyScoreEPA fuel economy score (1–10)
ghgScoreGreenhouse gas score (1–10)
annualFuelCostUsdEstimated annual fuel cost in USD
evMotorElectric motor description (EVs)
electricRangeAll-electric range in miles (EVs / PHEVs)
chargeTime240vHoursTime to charge on 240V Level 2 charger (hours)
phevCombinedMpgePHEV combined MPGe
turbochargedTrue if turbocharged
superchargedTrue if supercharged
hasStartStopTechnologyTrue if equipped with start-stop
scrapedAtISO 8601 timestamp

Input Options

Mode: Search Vehicles

Search by make + model + optional year. Returns all trim variants.

{
"mode": "search",
"make": "Toyota",
"model": "Camry",
"year": 2023,
"maxItems": 50
}

Omit year to get all model years for that make/model combination.

Mode: Browse All Models for a Make

Get every vehicle variant ever produced by a manufacturer, with optional year range.

{
"mode": "makeModels",
"make": "Tesla",
"yearMin": 2017,
"yearMax": 2024,
"maxItems": 200
}

Mode: List All Makes

Get a list of all manufacturers with vehicles in the EPA database for a given year.

{
"mode": "allMakes",
"queryYear": 2023,
"maxItems": 100
}

Mode: Fetch by Vehicle ID

Fetch specific vehicles by their FuelEconomy.gov ID (found in the URL on the website).

{
"mode": "byVehicleId",
"vehicleIds": ["45719", "45726", "45720"]
}

Filters

Use fuelTypeFilter and driveTrainFilter to narrow results:

{
"mode": "search",
"make": "Ford",
"model": "F-150",
"fuelTypeFilter": "Regular Gasoline",
"driveTrainFilter": "4-Wheel Drive",
"maxItems": 50
}

Use Cases

  • Car shopping research: Compare EPA-verified MPG ratings across makes, models, and years
  • Fleet management: Identify fuel-efficient vehicles by class and drivetrain
  • Environmental analysis: Study CO₂ emissions and GHG scores by vehicle segment
  • EV research: Find electric vehicle range and charging time specifications
  • Market research: Track which manufacturers offer the most fuel-efficient lineups
  • Academic research: Build datasets of vehicle emissions for climate studies

Data Source

Data comes from the US Department of Energy's FuelEconomy.gov public REST API — the official source for EPA fuel economy testing results. Coverage includes:

  • All model years from 1984 to 2027
  • 50+ manufacturers in recent years
  • Conventional, hybrid, plug-in hybrid, battery electric, fuel cell, and flex-fuel vehicles

FAQ

Is an API key required? No. FuelEconomy.gov is a free US government open data service with no authentication required.

How current is the data? The EPA tests and publishes data for each new model year. 2026 and 2027 model year data may be partial (pre-production estimates).

Can I get historical data back to 1984? Yes — set yearMin: 1984 in makeModels mode to retrieve the full history for any manufacturer.

What's the difference between MPG and MPGe? MPG (miles per gallon) is for conventional fuel. MPGe (miles per gallon equivalent) is used for electric vehicles, measuring equivalent energy in terms of gasoline.

Why are some EV records missing city/highway MPG? For pure electric vehicles, the primary fuel economy metrics appear in mpgeCityAlt and mpgeHwyAlt (the alternative fuel columns), while mpgCity/mpgHighway are zero and omitted.