Hemmings Data Parser & API
Hemmings is the leading US classic- and collector-car marketplace — an estimated 3-4M visits per month across tens of thousands of listings — and Carapis extracts its full classifieds and auction data, including detailed condition and provenance descriptions, through one REST API. A long-running enthusiast brand, Hemmings carries deep per-car detail (build history, service records, restoration notes) that is uniquely valuable for the classic-car niche — delivered without you building or maintaining a scraper.
| Country | USA |
|---|---|
| Type | Classifieds |
| Vehicle types | classic, auction |
| Monthly visits | ~3-4M/mo (est.) |
| Active listings | tens of thousands |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.hemmings.com |
What is Hemmings?
Hemmings is one of the oldest and best-known US classic-, collector- and special-interest-car marketplaces, combining dealer and private classifieds with online auctions. It draws an estimated 3-4M visits per month across tens of thousands of listings. Unlike mass-market portals, Hemmings listings are rich in narrative detail — restoration history, originality, modifications and service records — which is the core value for collector-car data.
Market Position
Hemmings is a category leader for US classic and enthusiast vehicles, with an estimated 3-4M visits per month and tens of thousands of active listings. It is a niche but high-per-record-value source: where mass-market portals optimize for spec and price, Hemmings carries the provenance and condition narrative that drives collector-car valuation — comparable in spirit to enthusiast-auction sources but with a larger standing classifieds inventory.
Data Fields Available
Carapis extracts a complete structured record from each Hemmings listing:
- Vehicle identity — make, model, model year, VIN where listed
- Condition — mileage, condition, restoration / originality and provenance detail
- Pricing — asking price or auction price
- Description — full narrative (build history, mods, service records)
- Listing context — dealer / private seller, location, photo gallery
The provenance and condition narrative are the standout fields — high-value, classic-specific data that mass-market portals do not carry.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "hemmings", "limit": 20},
headers={"Authorization": f"Bearer {API_KEY}"},
)
for car in resp.json()["results"]:
print(car["make"], car["model"], car["year"], car["price"])Get an API key at my.carapis.com and see the full API reference. Pricing is on the pricing page.
Use Cases
- Collector-car valuation — provenance and condition detail feed classic-car pricing models. See market research.
- Import / export — source and vet collector vehicles for international buyers. See import & export.
- Inventory monitoring — track rare-model availability and asking prices over time.