Skip to Content

Haraj Data Parser & API

Haraj is Saudi Arabia’s dominant consumer-to-consumer classifieds platform and the national leader for private car listings — and Carapis extracts its full car data, including make, model, year, mileage, price and seller info, through one REST API. It is the primary source of C2C used-car supply in the Kingdom, and Carapis serves its data without you building a scraper.

CountrySaudi Arabia
TypeClassifieds
Vehicle typesused, private
Monthly visitshigh (national C2C leader)
Active listingsvery large
API accessNo public API (parse-only)
Parse priority★★★★☆
Official siteharaj.com.sa

What is Haraj?

Haraj (حراج) is the leading horizontal C2C classifieds platform in Saudi Arabia, covering cars and a wide range of other categories. Its automotive section is the country’s largest pool of private (owner-listed) used cars, and it is so central to the market that other Saudi auto platforms — such as Syarah — pull a “Haraj cars” feed. The Saudi used-car market was valued at roughly USD 10.2B in 2025, with online channels growing more than 17% per year.

Market Position

Haraj is the national C2C leader in Saudi Arabia, carrying a very large volume of owner-listed cars — the dominant source of private used-car supply in the Kingdom. The broader Saudi used-car market reached ~USD 10.2B (2025) with the online channel growing >17%/yr, and Haraj sits at the center of that shift. Its private-seller depth complements the dealer-focused inventory on Syarah and Motory, so together they map both sides of the Saudi market.

Data Fields Available

Carapis extracts a structured record from each Haraj car listing:

  • Vehicle identity — make, model, model year, fuel type, transmission
  • Condition — mileage (where the seller provides it), free-text description
  • Pricing — listed price (in SAR)
  • Listing context — seller type (mostly private), location/city, photo gallery

As a C2C classifieds, Haraj’s per-listing structure is shallower than a dedicated portal’s, but its strength is breadth — it is the widest view of private used-car supply and pricing in Saudi Arabia.

API Quick Start

import requests resp = requests.get( "https://api.carapis.com/v2/listings", params={"source": "haraj", "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 pricing benchmarks the Saudi C2C market for dealers.
  • Market research — measure private used-car supply and price trends in the Kingdom. See market research.
  • Import / export — broad supply data helps buyers source from Saudi Arabia. See import & export.

Frequently asked questions