AutoTrader Scraper
Under maintenancePricing
$1.50 / 1,000 item scrapeds
AutoTrader Scraper
Under maintenanceScrape car listings from AutoTrader US/UK by ZIP/postcode, make, and model (price, mileage, dealer, location).
Pricing
$1.50 / 1,000 item scrapeds
Rating
0.0
(0)
Developer
Gio
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Search AutoTrader.com (US) or AutoTrader.co.uk (UK) for vehicle listings — no login, no cookies. Returns title (year/make/model), price, currency, mileage, location, dealer name, listing URL, and image, parsed primarily from each site's embedded __NEXT_DATA__ JSON (with an HTML-card fallback for resilience).
Input
| Field | Type | Description |
|---|---|---|
marketplace | string | us (AutoTrader.com) or uk (AutoTrader.co.uk). Default us. |
searchUrl | string | Optional full search-results URL to scrape directly. Overrides zipOrPostcode/make/model. |
zipOrPostcode | string | US: 5-digit ZIP code, e.g. 90210. UK: postcode, e.g. SW1A 1AA. Ignored if searchUrl is set. |
make | string | Optional vehicle make, e.g. Toyota. |
model | string | Optional vehicle model, e.g. Camry. |
maxItems | integer | Max listings to return (paginates automatically, max 300, default 30). |
Example (US):
{"marketplace": "us","zipOrPostcode": "90210","make": "Toyota","model": "Camry","maxItems": 30}
Example (UK):
{"marketplace": "uk","zipOrPostcode": "SW1A 1AA","make": "BMW","maxItems": 30}
Output
{"title": "2021 Toyota Camry SE","price": 21995,"currency": "USD","mileage": 32100,"location": "Beverly Hills, CA","dealerName": "Westside Motors","listingUrl": "https://www.autotrader.com/cars-for-sale/vehicledetails.xhtml?listingId=123456789","imageUrl": "https://images.autotrader.com/car-images/123456789/1.jpg","scrapedAt": "2026-07-17T00:00:00.000Z"}
Common uses
- Used-car price and inventory research by make/model/area
- Dealer inventory monitoring
- Market pricing analysis (US and UK side by side)
- Lead sourcing for auto marketplaces and finance/insurance tools
Notes
Both AutoTrader properties are separate, unrelated businesses that happen to share a brand name; this actor treats them as two distinct site integrations behind a single marketplace switch, each with its own URL builder and field mapping, sharing one deep-search helper (findListingArrays) to locate the listings array inside the embedded __NEXT_DATA__ payload regardless of exact prop-path changes.