Coches.net Data Parser & API
Coches.net is Spain’s leading car portal — around 11.4M visits per month — and Carapis extracts its full dealer and new-car listing data through one REST API. Formerly part of Adevinta Spain, the platform is being acquired by EQT (agreed July 2025), and Carapis serves its inventory without you building a Spanish-market scraper.
| Country | Spain |
|---|---|
| Type | Portal |
| Owner | EQT (ex-Adevinta Spain) |
| Vehicle types | used, new, dealer |
| Monthly visits | ~11.4M/mo (SimilarWeb, Apr 2026) |
| Active listings | large |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.coches.net |
What is Coches.net?
Coches.net is the leading dedicated car portal in Spain, carrying used and new vehicles from dealers across the country. It was part of Adevinta’s Spanish marketplaces and, in July 2025, was included in EQT’s agreed acquisition of Adevinta Spain (alongside Milanuncios, InfoJobs and Fotocasa). The site sees ~11.4M visits/mo (SimilarWeb, Apr 2026), making it the primary structured source for Spanish dealer car data.
Market Position
Coches.net is the auto leader among dedicated Spanish portals with ~11.4M visits/mo (SimilarWeb, Apr 2026). Its ownership is consolidating: in July 2025 EQT agreed to acquire Adevinta’s Spanish marketplaces, moving Coches.net (and sister site Milanuncios) under EQT. It competes with Milanuncios and Wallapop on the classifieds side, but leads on dealer-focused, structured car inventory — the cleanest Spanish dataset for pricing and supply analysis.
Data Fields Available
Carapis extracts a complete structured record from each Coches.net listing:
- Vehicle identity — make, model, trim, model year, body type
- Specification — fuel type, transmission, spec details
- Condition — mileage
- Pricing — listed price
- Listing context — dealer info, location, photo gallery
Coches.net’s dealer focus means its listings are well-structured and spec-complete, ideal for Spanish-market pricing intelligence.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "coches-net", "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 — Spanish dealer price and spec data power market-pricing models for dealers.
- Market research — track the Spanish used and new-car market. See market research.
- Import / export — source and price Spanish vehicles remotely. See import & export.