Classic.com Vehicles Scraper avatar

Classic.com Vehicles Scraper

Pricing

from $2.50 / 1,000 results

Go to Apify Store
Classic.com Vehicles Scraper

Classic.com Vehicles Scraper

Scrape Classic.com vehicle search results and listing pages from start URLs.

Pricing

from $2.50 / 1,000 results

Rating

0.0

(0)

Developer

Fahim Mahmud Chisti

Fahim Mahmud Chisti

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

9 hours ago

Last modified

Share

What does Classic.com Vehicles Scraper do?

Classic.com Vehicles Scraper extracts classic and collector vehicle listings from Classic.com search and detail pages. Paste a filtered search URL (odometer, query, sort, page) or a direct /veh/... listing URL, and the Actor returns structured fields that match the other vehicle scrapers in this monorepo—title, price, mileage, VIN, seller, location, images, and more.

Run it on the Apify platform for scheduling, API access, proxy rotation, monitoring, and dataset exports (JSON, CSV, Excel, HTML).

Why use Classic.com Vehicles Scraper?

  • Track private-seller and auction inventory with your own Classic.com filters preserved in the start URL
  • Monitor lot dates and prices for comps research
  • Feed marketplaces, CRM tools, or valuation pipelines with consistent vehicle fields
  • Paginate search results and optionally open each listing for full specs

How to use Classic.com Vehicles Scraper

  1. Open the Actor in Apify Console and go to the Input tab.
  2. Paste one or more Classic.com Start URLs (search or vehicle detail).
  3. Set Max items and Max pages per search (defaults are low for quick QA runs).
  4. Optionally enable Scrape item details for VIN, engine, colors, and description.
  5. Keep US residential proxies enabled if datacenter IPs are blocked.
  6. Click Start and download results from the Output / dataset tab.

Input

FieldDescription
startUrlsRequired. Classic.com /search/ or /veh/ URLs. Filters in the URL are kept.
maxItemsCap on saved listings (0 = unlimited). Default 5.
maxPagesPerSearchPages to crawl per search URL. Default 1.
maxListingAgeDaysOptional age filter using the listing lot/listed date.
scrapeItemDetailsOpen each vehicle page for richer fields. Default false.
duplicateCheckSkip detail scraping for listing URLs already known (default false).
duplicateCheckApiUrlOptional POST exists API; leave empty for Apify storage only.
duplicateCheckStoreNameNamed KV store (default vehicle-listing-urls).
proxyConfigurationPrefer Apify residential US proxies.

Example input:

{
"startUrls": [
{
"url": "https://www.classic.com/search/?filters%5Bodometer%5D%5Bend%5D=75000&filters%5Bodometer%5D%5Bstart%5D=0&page=1&q=Private+seller&sort=lotdate"
}
],
"maxItems": 5,
"maxPagesPerSearch": 1,
"scrapeItemDetails": false
}

Skip existing listings (duplicate check)

Classic.com detail scraping opens each vehicle in a browser with residential proxies. On scheduled re-runs, most results are often listings you already stored. Duplicate check skips those URLs so you do not pay again for detail pages you already have.

Enable it with duplicateCheck: true (default false).

Modes

  • When duplicateCheckApiUrl is set, the Actor POSTs batches of up to 500 listing URLs to your endpoint, then skips URLs returned in existing. It also reads and updates the named Apify Key-Value store. A URL is skipped if either your API or the store marks it as known.
  • When duplicateCheckApiUrl is empty, the Actor uses the Apify Key-Value store only (no external API).

API contract

// Request
{ "listingUrls": ["https://example.com/listing/1", "https://example.com/listing/2"] }
// Response
{
"existing": ["https://example.com/listing/1"],
"missing": ["https://example.com/listing/2"]
}

listingUrls may also be a single string. URLs are normalized (query string and trailing slash ignored). No auth header is required for public endpoints. If the API call fails, the Actor fail-opens and scrapes the batch.

After a listing is saved successfully, its URL is written to the named store under the KNOWN_LISTING_URLS record so future runs skip it even without an API.

Example:

{
"startUrls": [{ "url": "https://www.classic.com/search/?q=Private+seller&sort=lotdate" }],
"maxItems": 100,
"duplicateCheck": true,
"duplicateCheckApiUrl": "https://your-api.example.com/listings/exists",
"duplicateCheckStoreName": "vehicle-listing-urls"
}

Output

Each dataset item uses the shared vehicle listing shape. You can download the dataset as JSON, HTML, CSV, or Excel.

{
"itemId": "1957-ford-thunderbird-d7fh221629-WRGEy0p",
"title": "1957 Ford Thunderbird",
"listedAt": "2026-07-20T00:00:00.000Z",
"price": "50000",
"currency": "USD",
"location": "Payette County, Idaho, USA",
"seller": "Private Seller",
"year": "1957",
"make": "Ford",
"model": "Thunderbird",
"mileage": "53000",
"transmission": "Automatic",
"vin": null,
"url": "https://www.classic.com/veh/1957-ford-thunderbird-d7fh221629-WRGEy0p/",
"imageUrl": "https://images.classic.com/vehicles/280becaa-df5b-4d08-ad50-23cf7acff4a1.jpg",
"images": ["https://images.classic.com/vehicles/280becaa-df5b-4d08-ad50-23cf7acff4a1.jpg"],
"page": 1,
"scrapedAt": "2026-07-20T17:00:00.000Z"
}

With scrapeItemDetails: true, expect additional fields such as vin, engine, bodyType, driveType, exterior/interior colors, description, and specifics.

Data fields

FieldNotes
itemIdClassic.com vehicle slug from /veh/{slug}/
titleListing title
listedAtLot/listed date when shown on the card or detail page
price / currencyAsking or sold price in USD when present
mileageNormalized miles (e.g. 53k53000)
year / make / modelParsed from title and detail specs
seller / forSaleBye.g. Private Seller / owner
vinFrom detail specs when detail scraping is on
images / imageUrlClassic.com CDN vehicle images
url / sourceUrl / pageProvenance and pagination

Tips

  • Build the search on Classic.com first (filters, q, sort=lotdate), then copy the URL into startUrls.
  • Keep maxItems and maxPagesPerSearch small while testing; raise them for production runs.
  • Enable scrapeItemDetails when you need VIN or full specs—each listing costs an extra request.
  • Enable duplicateCheck on scheduled re-runs to skip listings you already stored.
  • Set scrapeItemDetails: false when search-card fields are enough.
  • Prefer skipping known listings over raising memory.
  • Keep browser concurrency low.
  • If results are empty, check the run key-value store for DEBUG_PAGE_* HTML snapshots.

FAQ and support

This Actor is intended for legitimate research and inventory monitoring. Respect Classic.com terms of service and applicable laws. For bugs or feature requests, use the Actor Issues tab on Apify, or ask for a custom solution if you need marketplace-specific enrichments.