Philkotse Data Parser & API
Philkotse is the Philippines’ #1 auto portal, carrying large used, new and dealer car inventory — and Carapis extracts its full listings, including price, mileage and spec, through one REST API. As the leading Philippine car site, Philkotse is the primary national inventory source, served without you building or maintaining a scraper.
| Country | Philippines |
|---|---|
| Type | Portal |
| Owner | Philkotse |
| Vehicle types | used, new, dealer |
| Monthly visits | high (PH No.1 auto portal) |
| Active listings | large |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | philkotse.com |
What is Philkotse?
Philkotse (philkotse.com) is the leading car marketplace in the Philippines, listing used, new and dealer vehicles nationwide. It carries the standard structured classified data — make, model, year, mileage, price, condition and dealer contact — at the largest scale of any Philippine auto portal.
Market Position
Philkotse is the Philippines’ No.1 auto portal by traffic, with large national inventory across used, new and dealer vehicles. It leads the Philippine market ahead of AutoDeal (new-car/lead-gen focused) and the Carsome-owned Carmudi PH — making Philkotse the primary source for Philippine used-car data.
Data Fields Available
Carapis extracts a complete structured record from each Philkotse listing:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage, condition (used / new)
- Pricing — listed price
- Listing context — dealer / seller info, location, photo gallery
Philkotse’s value is being the broadest view of Philippine national inventory and pricing, delivered as clean structured fields.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "philkotse", "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 — Philippine inventory powers residual-value and market-pricing models for dealers.
- Market research — track Philippine inventory mix, mileage and price trends. See market research.
- Import / export — benchmark Philippine pricing against regional markets. See import & export.