Letgo / OtoPlus Data Parser & API
Letgo / OtoPlus is a Turkish online used-car dealer that has handled 100K+ vehicle transactions over a decade — and Carapis extracts its full inventory data, including make, model, year, mileage and price, through one REST API. Its transactional dealer model produces consistent listing data, and Carapis serves it without you maintaining a scraper.
| Country | Turkey |
|---|---|
| Type | Online-dealer |
| Vehicle types | used |
| Monthly visits | moderate |
| Active listings | thousands |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
What is Letgo / OtoPlus?
Letgo / OtoPlus is a Turkish online-dealer operation for used cars, with a transactional buy/sell model and a track record of more than 100K vehicle transactions across roughly a decade. It holds and turns over its own used-car stock (in the thousands), with standardized listing data rather than open-classifieds fields.
Market Position
Letgo / OtoPlus is a focused online used-car dealer with moderate traffic and thousands of vehicles in stock. Its strength is consistent, first-party dealer inventory and a long transactional history (100K+ vehicles), making it a clean, if smaller, structured-data source. It complements the larger Turkish marketplaces and the Otokoç certified network by adding another online-dealer supply stream.
Data Fields Available
Carapis extracts a structured record from each Letgo / OtoPlus listing:
- Vehicle identity — make, model, trim, model year, body type, fuel type, transmission
- Condition — mileage
- Pricing — listed price (in TRY)
- Listing context — location, photo gallery
Its standardized online-dealer fields provide a clean, consistent view of one slice of Turkish used-car supply.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "letgo-otoplus", "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 — online-dealer pricing adds a supply angle for dealers.
- Market research — track another slice of Turkish used-car turnover. See market research.
- Import / export — structured dealer data helps buyers source from Turkey. See import & export.