DoneDeal Data Parser & API
DoneDeal is Ireland’s #1 car classifieds — around 7.1M visits per month — and Carapis extracts its deep private and dealer car listings through one REST API. As the leading auto marketplace in Ireland, DoneDeal carries the country’s richest used-car inventory across private and dealer sellers, and Carapis serves it without you building a scraper.
| Country | Ireland |
|---|---|
| Type | Classifieds |
| Vehicle types | used, private, dealer, commercial |
| Monthly visits | ~7.1M/mo (Feb 2026, SimilarWeb) |
| Active listings | large |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.donedeal.ie |
What is DoneDeal?
DoneDeal is Ireland’s leading classifieds marketplace and its #1 destination for cars, covering used vehicles and commercials from both private sellers and dealers. It draws ~7.1M visits/mo (SimilarWeb, Feb 2026) and recently reported a sharp acceleration in EV demand, underlining its role as the bellwether of the Irish used-car market.
Market Position
DoneDeal is the #1 car marketplace in Ireland with ~7.1M visits/mo (Feb 2026), well ahead of the dealer-focused Carzone.ie. Its standout asset is the breadth of its private and dealer car inventory — effectively the whole Irish market in one place — making it the fullest single window into Irish used-car supply, and a useful barometer for trends like EV adoption.
Data Fields Available
Carapis extracts a structured record from each DoneDeal car listing:
- Vehicle identity — make, model, model year
- Specification — fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Listing context — seller type (private vs dealer), location, photo gallery
The combined private-and-dealer depth and seller-type flag make DoneDeal the fullest single window into the Irish market.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "donedeal", "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
- Market research — the most complete view of the Irish used-car market, including EV trends. See market research.
- Pricing intelligence — private and dealer asking prices feed market-pricing models for dealers.
- Import / export — source Irish vehicles, including private stock, remotely. See import & export.