Arabam.com Data Parser & API
Arabam.com is Turkey’s leading automotive pure-play portal — around 6.4M visits per month and nearing 10M members — and Carapis extracts its full listing data, including deep structured spec, trim and dealer information, through one REST API. As a dedicated auto site it carries cleaner, more structured spec data than the horizontal Sahibinden, and Carapis serves it without you building or maintaining a scraper.
| Country | Turkey |
|---|---|
| Type | Portal |
| Vehicle types | used, new, dealer, commercial |
| Monthly visits | ~6.4M/mo (SimilarWeb, late 2025) |
| Active listings | large; ~10M members |
| API access | No public API (parse-only) |
| Parse priority | ★★★★★ |
| Official site | www.arabam.com |
What is Arabam.com?
Arabam.com is the dominant auto-only marketplace in Turkey, listing used and new cars and commercial vehicles from dealers and private sellers. Unlike horizontal classifieds, it is purpose-built for automotive, so each listing carries deep structured specification fields — engine, gearbox, fuel, trim and damage status. Arabam reported approaching 10M members with roughly 6.4M monthly visits (SimilarWeb, late 2025), outscoring AutoScout24’s Turkish site.
Market Position
Arabam.com is Turkey’s leading auto pure-play, with ~6.4M visits/mo and nearing 10M members (late 2025), ahead of AutoScout24 Turkey. While Sahibinden is larger overall as a horizontal classifieds, Arabam’s auto-focused structure makes it the cleaner source for spec-level data, and its medium anti-bot profile makes it easier to parse than Sahibinden. Like Sahibinden, Arabam remains an independent Turkish marketplace (not part of Adevinta/OLX), so it is parsed as its own source.
Data Fields Available
Carapis extracts a complete structured record from each Arabam.com listing:
- Vehicle identity — make, model, trim, model year, body type, engine, fuel type, transmission
- Condition — mileage, damage / “hasar” status
- Pricing — listed price
- Listing context — dealer / seller info, location, photo gallery
Arabam’s strength is the depth and consistency of its structured spec fields — make/model/trim plus engine, gearbox and damage status — delivered cleanly because the site is auto-only rather than a general classifieds.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "arabam", "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 spec and damage-status fields power residual-value models for dealers.
- Import / export — structured trim and engine data help exporters vet Turkish vehicles remotely. See import & export.
- Market research — track the Turkish used-car market through its leading auto pure-play. See market research.