Syarah Data Parser & API
Syarah is Saudi Arabia’s leading auto-focused online dealer and portal — listing thousands of used and new cars and pulling a “Haraj cars” feed — and Carapis extracts its full listing data, including make, model, year, mileage, price and dealer info, through one REST API. It pairs a transactional online-dealer model with broad supply, and Carapis serves its data without you maintaining a scraper.
| Country | Saudi Arabia |
|---|---|
| Type | Online-dealer |
| Vehicle types | used, new |
| Monthly visits | ~1-3M/mo (est.) |
| Active listings | thousands+ |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | syarah.com |
What is Syarah?
Syarah (سيارة) is a Saudi automotive online dealer and portal offering used and new cars, with a transactional buying flow and dealer inventory. It aggregates supply from across the market — including a “Haraj cars” feed — giving it both first-party and broader listing data. Syarah raised a SAR 22M Series C (September 2024) to expand as the Saudi online used-car channel grows more than 17% per year, against a market worth roughly USD 10.2B in 2025.
Market Position
Syarah is a leading auto-focused platform in Saudi Arabia, with an estimated ~1-3M monthly visits and thousands of live listings. It sits between the dealer-portal and online-dealer models, and its integration of a Haraj feed gives it reach into the Kingdom’s dominant C2C pool. With the Saudi used-car market at ~USD 10.2B (2025) and online growing >17%/yr, Syarah is a key dealer-side counterpart to Haraj’s private-seller supply.
Data Fields Available
Carapis extracts a structured record from each Syarah listing:
- Vehicle identity — make, model, trim, model year, body type, fuel type, transmission
- Condition — mileage
- Pricing — listed price (in SAR)
- Listing context — seller type (dealer / aggregated), location, photo gallery
Syarah’s mix of dealer inventory and aggregated supply makes it useful for tracking both retail pricing and broader Saudi market availability in one source.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "syarah", "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 — dealer retail pricing benchmarks the Saudi market for dealers.
- Market research — track Saudi online used-car supply and price trends. See market research.
- Import / export — structured dealer data helps buyers source from Saudi Arabia. See import & export.