Cars.com Vehicle Scraper avatar

Cars.com Vehicle Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
Cars.com Vehicle Scraper

Cars.com Vehicle Scraper

Scrape used, new, and certified pre-owned vehicle listings from Cars.com for data on price, mileage, dealer info, and vehicle specs. It features TLS impersonation to bypass anti-bot protection and supports Apify Proxy for efficient scraping and IP rotation.

Pricing

from $10.00 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

6 days ago

Last modified

Share

Cars.com Vehicle Scraper — Apify Actor

Scrapes used, new, and certified pre-owned vehicle listings from Cars.com, with TLS impersonation to bypass fingerprint-based blocking and Apify Proxy support for IP rotation.

Input

FieldTypeDefaultNotes
makestringhondaCars.com make slug
modelstringcivicCars.com model slug; combined as make-model
zipCodestring294055-digit US ZIP
radiusinteger50Miles from ZIP (0–500)
stockTypeenumusedused / new / cpo
minPriceint?Lower price bound
maxPriceint?Upper price bound
minYear / maxYearint?Model-year range
maxMileageint?Odometer cap
maxPagesinteger5Stop after N pages
pageSizeenum2020 / 50 / 100
fetchDetailsboolfalseVisit each VDP for full info (slower)
requestDelayfloat2.0Seconds between requests
impersonatestringchrome120curl_cffi TLS profile
proxyConfigurationobjectApify ProxyUse Residential group — datacenter IPs blocked

Example input

{
"make": "honda",
"model": "civic",
"zipCode": "29405",
"radius": 25,
"stockType": "used",
"minYear": 2019,
"maxYear": 2024,
"maxMileage": 80000,
"maxPages": 3,
"fetchDetails": false,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"]
}
}

Output

Each dataset item is a VehicleListing (see src/scraper.py):

{
"listing_id": "807123456",
"title": "2021 Honda Civic LX",
"year": 2021,
"make": "Honda",
"model": "Civic",
"trim": "LX",
"price": 21995,
"original_price": 23495,
"price_drop": 1500,
"mileage": 42103,
"monthly_payment": 389,
"dealer_name": "Hendrick Honda",
"dealer_rating": 4.6,
"distance_miles": 8.4,
"badges": ["Great Deal"],
"url": "https://www.cars.com/vehicledetail/...",
"image_url": "https://platform.cstatic-images.com/...",
"vin": "2HGFC2F69MH...",
"body_style": "Sedan",
"fuel_type": "Gasoline",
"scraped_at": "2026-05-23T12:34:56+00:00"
}

When fetchDetails: true, items also include features, description, and photos (up to 20).