Roojai Data Parser & API
Roojai is a Thai insuretech company that also runs a secondary used-car listings vertical — and Carapis extracts its available car listing data, including price, mileage and spec, through one REST API. Roojai is insurance-led with a small car inventory, so it is a niche supplementary source rather than a primary Thai marketplace, served without you building or maintaining a scraper.
| Country | Thailand |
|---|---|
| Type | Marketplace |
| Owner | Roojai |
| Vehicle types | used |
| Monthly visits | est. (insurance-led) |
| Active listings | small |
| API access | No public API (parse-only) |
| Parse priority | ★☆☆☆☆ |
| Official site | www.roojai.com |
What is Roojai?
Roojai is primarily an online motor-insurance provider in Thailand that has added a used-car listings vertical alongside its core insurance products. Its car inventory is small and insurance-led, carrying basic structured listing data — make, model, year, mileage, price and condition. It is a supplementary, niche source for the Thai used-car market.
Market Position
Roojai’s position in the used-car market is secondary — its primary business is motor insurance, and its vehicle listings vertical is small. For Thai used-car data, the leading sources are the dealer portal One2car and the general-classifieds leader Kaidee; Roojai is best used as a supplementary signal rather than a primary inventory feed. Because the vehicle listings vertical is small, treat coverage as limited.
Data Fields Available
Carapis extracts the available structured record from each Roojai car listing:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage, condition
- Pricing — listed price
- Listing context — location, photo gallery
Roojai’s data is basic and lower-volume; it is most useful as a supplementary Thai-market signal alongside the larger portals.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "roojai", "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
- Market research — use Roojai as a supplementary Thai-market signal alongside larger portals. See market research.
- Pricing intelligence — add Roojai price points to residual-value models for dealers.
- Import / export — surface additional Thai stock for sourcing. See import & export.