Hasznaltauto.hu Data Parser & API
Hasznaltauto.hu is Hungary’s dominant car portal — around 10.7M visits per month and an estimated 70%+ market share — and Carapis extracts its full listing data, including spec, mileage, photos and dealer details, through one REST API. Owned by Adevinta, it offers a near-complete view of the Hungarian used-car market.
| Country | Hungary |
|---|---|
| Type | Portal |
| Owner | Adevinta |
| Vehicle types | used, new, dealer, private |
| Monthly visits | ~10.7M/mo (SimilarWeb Sep 2025) |
| Active listings | — (~70%+ share) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.hasznaltauto.hu |
What is Hasznaltauto.hu?
Hasznaltauto.hu is the leading car portal in Hungary, operated by Adevinta (alongside Jofogas and Autonavigator). It carries dealer and private listings of used and new cars. Hasznaltauto.hu draws ~10.7M visits per month (SimilarWeb, Sep 2025) with an estimated 70%+ of the Hungarian market.
Market Position
Hasznaltauto.hu dominates the Hungarian auto market with ~10.7M monthly visits (SimilarWeb, Sep 2025) and an estimated 70%+ share — so its dataset gives a near-complete picture of the country’s used market. Owned by Adevinta, it was fined ~$1.6M by the Hungarian competition watchdog in 2025, underscoring its market dominance. There is no public API and the site is JS-rendered with moderate anti-bot, which Carapis absorbs.
Data Fields Available
Carapis extracts a structured record from each Hasznaltauto.hu listing:
- Vehicle identity — make, model, trim, model year, fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Specification — factory options and trim
- Listing context — dealer / seller info, location, photo gallery
Its ~70%+ market share means Hasznaltauto.hu data is effectively a national index of the Hungarian used-car market.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "hasznaltauto-hu", "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
- Pricing intelligence — Hungary’s near-complete auto dataset powers residual-value and market-pricing models for dealers.
- Market research — with ~70%+ share, track the whole Hungarian used-car market. See market research.
- Import / export — spec and dealer data support cross-border sourcing into and out of Hungary. See import & export.