OLX Motoryzacja Data Parser & API
OLX Motoryzacja is the car section of olx.pl — Poland’s largest horizontal classifieds, part of an ~150M+/mo all-category site — and Carapis extracts its listing data, including spec, mileage, photos and seller info, through one REST API. Owned by OLX Group (Prosus/Naspers), it is the private-seller (C2C) tier that complements its sister portal Otomoto.
| Country | Poland |
|---|---|
| Type | Classifieds |
| Owner | OLX Group (Prosus) |
| Vehicle types | used, private |
| Monthly visits | part of olx.pl ~150M+/mo all-cat |
| Active listings | large (C2C) |
| API access | Partial / limited API |
| Parse priority | ★★★☆☆ |
| Official site | www.olx.pl |
What is OLX Motoryzacja?
OLX Motoryzacja is the vehicles category of olx.pl, the dominant horizontal classifieds platform in Poland, run by OLX Group under Prosus/Naspers. It is heavily private-seller (C2C) and complements the dealer-rich Otomoto, which shares the same parent. Its traffic is part of olx.pl’s ~150M+ monthly all-category visits.
Market Position
OLX Motoryzacja is the C2C layer of the Polish auto market: a large private-seller base under the olx.pl umbrella (~150M+/mo all-category). Together with Otomoto, also OLX Group / Prosus, it gives near-complete coverage of Poland — dealer and private. The shared OLX stack means one parser pattern extends across the group’s Motors verticals in Poland, Romania and Uzbekistan. Carapis handles the JS rendering and serves the data through one unified endpoint.
Data Fields Available
Carapis extracts a structured record from each OLX Motoryzacja listing:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Specification — options
- Listing context — seller type (private vs dealer), location, photo gallery
Its private-seller depth makes OLX Motoryzacja the complement to Otomoto’s dealer inventory for a full Polish market view.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "olx-pl", "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 private-seller inventory for a complete view of the Polish used-car market. See market research.
- Pricing intelligence — C2C listings broaden the sample for pricing models for dealers.
- Import / export — Poland is a major EU used-car hub; private-seller data supports cross-border sourcing. See import & export.