Subito.it Data Parser & API
Subito.it is Italy’s #1 classifieds platform — around 50M visits per month, with cars as its top category — and Carapis extracts its deep private and dealer car listings through one REST API. With 26M+ monthly uniques and an 88% mobile audience, Subito carries Italy’s richest private/C2C car inventory, and Carapis serves it without you building a scraper.
| Country | Italy |
|---|---|
| Type | Classifieds |
| Vehicle types | used, private, dealer, moto |
| Monthly visits | ~50M/mo all verticals (cars #1 category) |
| Active listings | large |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.subito.it |
What is Subito.it?
Subito.it is Italy’s leading re-commerce and classifieds platform, where cars are the single largest category. It lists used vehicles and motorcycles from both private sellers and dealers, drawing ~50M visits/mo and 26M+ monthly unique users (2024 figures). With heavy private-seller volume, Subito is the primary source of Italian C2C car data.
Market Position
Subito.it is Italy’s #1 classifieds site by traffic (~50M visits/mo, cars the top category) and confirms a continuing second-hand boom in Italy. Its standout asset is deep private/C2C inventory — Italian vehicles listed directly by owners that do not appear on dealer-only portals. That makes Subito complementary to pure-play auto portals like AutoScout24.it and the richest single window into Italian consumer-level used-car supply.
Data Fields Available
Carapis extracts a structured record from each Subito.it 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 Subito valuable for analysing the C2C half of the Italian market.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "subito-it", "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 Italian supply. See market research.
- Pricing intelligence — private and dealer asking prices feed market-pricing models for dealers.
- Import / export — source Italian vehicles, including private stock, remotely. See import & export.