Kaidee Data Parser & API
Kaidee is Thailand’s leading general classifieds platform, with a large automotive vertical of private-seller and dealer car ads — and Carapis extracts its full car listings, including price, mileage and spec, through one REST API. As a general-classifieds leader, Kaidee adds the private-seller (C2C) supply that dealer-led portals like One2car under-cover, served without you building or maintaining a scraper.
| Country | Thailand |
|---|---|
| Type | Classifieds |
| Owner | Kaidee |
| Vehicle types | used, private |
| Monthly visits | high (general classifieds) |
| Active listings | large (cars vertical) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.kaidee.com |
What is Kaidee?
Kaidee (formerly Khaidee / OLX Thailand) is one of Thailand’s largest general classifieds sites, with a substantial cars vertical covering private sellers and dealers. It carries the standard structured classified data — make, model, year, mileage, price, condition and seller contact — at large national scale.
Market Position
Kaidee is a top general-classifieds destination in Thailand, and its automotive vertical is a major source of private-seller (C2C) car supply — inventory that dealer-focused portals like the Carsome-owned One2car under-cover. For full coverage of the Thai used-car market, Kaidee’s C2C listings pair naturally with One2car’s dealer inventory.
Data Fields Available
Carapis extracts a complete structured record from each Kaidee car listing:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage, condition
- Pricing — listed price
- Listing context — seller info, location, photo gallery
Kaidee’s value is private-seller (C2C) coverage: it surfaces vehicles and price points that never appear on dealer-only portals, delivered as clean structured fields.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "kaidee", "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 — private-seller price points fill the C2C gap in residual-value models for dealers.
- Market research — track Thai private-seller supply and price trends. See market research.
- Import / export — surface private-seller stock for sourcing. See import & export.