Milanuncios Data Parser & API
Milanuncios is one of Spain’s largest classifieds sites — around 14.1M visits per month — and its motors section carries deep private and dealer car listings that Carapis extracts through one REST API. Formerly part of Adevinta Spain and now headed to EQT (agreed July 2025), Milanuncios surfaces private-seller vehicles missing from dealer-only portals, and Carapis serves them without you building a scraper.
| Country | Spain |
|---|---|
| Type | Classifieds |
| Owner | EQT (ex-Adevinta Spain) |
| Vehicle types | used, private, dealer |
| Monthly visits | ~14.1M/mo (Nov 2025) |
| Active listings | large |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.milanuncios.com |
What is Milanuncios?
Milanuncios is a major Spanish general-classifieds platform with a large vehicles category covering used cars from both private sellers and dealers. It was part of Adevinta’s Spanish marketplaces and, in July 2025, was included in EQT’s agreed acquisition of Adevinta Spain. The site draws ~14.1M visits/mo (Nov 2025), making its motors section a key source of Spanish private-seller car data.
Market Position
Milanuncios is among Spain’s biggest classifieds destinations with ~14.1M visits/mo (Nov 2025), sitting alongside sister portal Coches.net under the EQT acquisition of Adevinta Spain (July 2025). Where Coches.net leads on dealer inventory, Milanuncios is stronger on private/C2C listings — vehicles not found on dealer-only sites — making the two complementary for a full picture of Spanish used-car supply.
Data Fields Available
Carapis extracts a structured record from each Milanuncios 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 private-seller depth and seller-type flag make Milanuncios valuable for analysing the C2C half of the Spanish market.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "milanuncios", "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 — private-seller inventory reveals the C2C side of Spanish supply. See market research.
- Pricing intelligence — price and spec data feed market-pricing models for dealers.
- Import / export — source Spanish private-seller vehicles remotely. See import & export.