AutoScout24 Turkey Data Parser & API
AutoScout24 Turkey is the Turkish arm of the pan-European AutoScout24 group — a structured used- and new-car portal sitting just behind Arabam.com in the market — and Carapis extracts its full listing data, including make, model, year, mileage, price and dealer info, through one REST API. It carries the AutoScout24 group’s clean spec structure, and Carapis serves its data without you maintaining a scraper.
| Country | Turkey |
|---|---|
| Type | Portal |
| Owner | Hellman & Friedman |
| Vehicle types | used, new, dealer |
| Monthly visits | <6.4M/mo (behind Arabam) |
| Active listings | large |
| API access | Partial / limited API |
| Parse priority | ★★★☆☆ |
| Official site | www.autoscout24.com.tr |
What is AutoScout24 Turkey?
AutoScout24 Turkey (autoscout24.com.tr) is the Turkish portal of the AutoScout24 group, owned by Hellman & Friedman, which operates across 18+ European markets. It lists used and new cars from dealers using the group’s standardized, structured listing model. In Turkey it sits behind Arabam.com (under ~6.4M monthly visits) but benefits from the group’s mature data structure and partial European group APIs.
Market Position
AutoScout24 Turkey is the #2-tier auto pure-play in Turkey, behind Arabam.com (which nears 10M members at ~6.4M visits/mo) and dwarfed in raw traffic by the horizontal Sahibinden. Its advantage is the AutoScout24 group’s clean, standardized spec structure and partial group APIs, making it a consistent, comparatively easy-to-parse complement to the larger Turkish sources. As a group brand it is parsed individually for the Turkish market.
Data Fields Available
Carapis extracts a structured record from each AutoScout24 Turkey listing:
- Vehicle identity — make, model, trim, model year, body type, engine, fuel type, transmission
- Condition — mileage
- Pricing — listed price (in TRY)
- Listing context — dealer info, location, photo gallery
AutoScout24’s standardized spec fields are its strength — consistent make/model/trim/engine data thanks to the group’s mature listing model.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "autoscout24-turkey", "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 — clean dealer pricing feeds residual-value models for dealers.
- Import / export — standardized spec data helps exporters vet Turkish vehicles. See import & export.
- Market research — track the Turkish used-car market through a structured portal. See market research.