Otokoç İkinci El Data Parser & API
Otokoç İkinci El is Turkey’s certified-used dealer network, run by Otokoç Otomotiv, listing thousands of inspected second-hand cars — and Carapis extracts its full inventory data, including make, model, year, mileage, price and certified condition data, through one REST API. Its dealer-network model produces consistent, certified listings, and Carapis serves them without you maintaining a scraper.
| Country | Turkey |
|---|---|
| Type | Dealer-network |
| Vehicle types | used |
| Monthly visits | moderate |
| Active listings | thousands |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.otokocikinciel.com |
What is Otokoç İkinci El?
Otokoç İkinci El (“Otokoç Second Hand”) is the used-car arm of Otokoç Otomotiv, one of Turkey’s largest automotive dealer groups. It sells certified pre-owned vehicles from its own dealer-network stock, with structured, standardized listings and certification status. Inventory runs into the thousands across its branches.
Market Position
Otokoç İkinci El is a focused certified-used dealer network rather than a mass marketplace, with moderate traffic and thousands of vehicles. Its value is the consistency and trust of first-party, certified dealer inventory — a cleaner, more standardized data set than open classifieds. It complements the large Turkish marketplaces (Sahibinden, Arabam.com) by adding structured certified-dealer supply.
Data Fields Available
Carapis extracts a structured record from each Otokoç İkinci El listing:
- Vehicle identity — make, model, trim, model year, body type, fuel type, transmission
- Condition — mileage, certified status
- Pricing — listed price (in TRY)
- Listing context — branch/location, photo gallery
The certified status and standardized dealer-network fields are the strength here — clean, consistent data on inspected stock.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "otokoc", "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 — certified-dealer pricing benchmarks the Turkish CPO segment for dealers.
- Market research — track certified-used inventory and pricing in Turkey. See market research.
- Import / export — certified condition data helps buyers vet Turkish stock. See import & export.