Gari.pk Data Parser & API
Gari.pk is a Pakistani car portal listing used and new vehicles — a secondary national source behind market-leader PakWheels — and Carapis extracts its listing data, including price, mileage and dealer info, through one REST API. Gari.pk carries used, new and dealer inventory with low anti-bot friction, and Carapis serves it without you building a scraper.
| Country | Pakistan |
|---|---|
| Type | Portal |
| Owner | Gari.pk |
| Vehicle types | used, new, dealer |
| Monthly visits | smaller (vs PakWheels) |
| Active listings | used + new |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.gari.pk |
What is Gari.pk?
Gari.pk is a Pakistani automotive portal and classifieds site covering used and new cars and dealer inventory. It is a secondary site behind PakWheels and OLX Pakistan, useful as an additional source for the Pakistani car market. Traffic is smaller than PakWheels’.
Market Position
Gari.pk sits in the long tail of Pakistani auto sites behind PakWheels (the national leader) and OLX Pakistan. While it does not rival PakWheels on volume, it adds incremental dealer and listing coverage, and its low anti-bot profile makes it straightforward to include for fuller national coverage. Combined with PakWheels and OLX Pakistan, it helps round out a view of Pakistan’s used-car supply.
Data Fields Available
Carapis extracts a structured record from each Gari.pk listing:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage (self-reported)
- Pricing — listed asking price
- Import context — registration city (relevant for reconditioned imports)
- Listing context — dealer info, location, photo gallery
Gari.pk is a portal/classifieds source (listing-level fields, no VIN feed), best used alongside PakWheels for fuller Pakistani coverage.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "gari-pk", "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 — add Gari.pk to PakWheels and OLX Pakistan for fuller national coverage. See market research.
- Pricing intelligence — asking-price and mileage data support valuation models for dealers.
- Import / export — track reconditioned-import supply into Pakistan. See import & export.