OLX Car Scraper — Poland Car Listings avatar

OLX Car Scraper — Poland Car Listings

Pricing

from $2.00 / 1,000 results

Go to Apify Store
OLX Car Scraper — Poland Car Listings

OLX Car Scraper — Poland Car Listings

Scrape car listings from OLX — make, model, year, mileage, price, and photos. Includes seller contact details and city/region location, plus incremental price-drop tracking across runs.

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

Black Falcon Data

Black Falcon Data

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

What does OLX Car Scraper do?

OLX Car Scraper extracts structured car listings from olx.pl — Poland's largest classifieds marketplace. Every result carries the full spec sheet: make, model, year, mileage, fuel type, transmission, body type, color, engine power/capacity, drivetrain, VIN and country of origin, taken straight from OLX's own listing data — no separate detail-page fetch required. Prices arrive structured in PLN with negotiable/arranged flags.

Filter by make, model, year, price, mileage, engine power, fuel type, transmission, body type, color, condition, country of origin, seller type and right-hand drive — or paste a search-results URL straight from your browser, or individual listing URLs to track specific cars. Incremental mode tracks new, price-changed and expired listings across runs, with the previous price and drop amount on every updated listing. Alerts go to Telegram, Discord, Slack, WhatsApp or any webhook.

How to use this actor

  • 👉 Register for a free Apify account — no credit card required.
  • 🎉 Just click Sign up free on Apify → and complete a quick signup.
  • 💰 A free Apify account includes $5 in monthly credits — enough to test this actor.
  • ⏳ Scrape during the free trial, with no commitment or upfront payment required.

Key features

  • 🚗 Vehicle data depth — full specs on every listing: make, model, year, mileage, fuel type, transmission, body type, color, engine power/capacity, drivetrain, VIN, and country of origin — straight from OLX's own data, no detail-page fetch needed.
  • 💵 Structured pricing — price with currency and negotiable/arranged flags, plus cross-run price-drop tracking (previous price, drop amount) in incremental mode.
  • 🔔 Notifications — Telegram, Slack, Discord, WhatsApp, or webhook alerts each run — combine with incremental mode to ping only on real price or inventory moves.
  • 🔗 Paste-mode — paste a search-results URL or individual listing URLs straight from your browser — mix freely with structured filters and keyword rules.
  • 📧 Email + phone extraction — contact emails and phone numbers extracted from descriptions, emitted as extractedEmails[] / extractedPhones[].
  • 🔗 URL + social-profile extractionextractedUrls[] plus a structured socialProfiles object (LinkedIn, Twitter, Instagram, Facebook, YouTube, TikTok, GitHub, Xing).
  • 📦 Compact mode — core fields only, for lean cross-listing comparisons and pricing dashboards.
  • ✂️ Description truncation — cap length with descriptionMaxLength to control LLM prompt cost and dataset size.
  • 📌 Change classificationchangeType of NEW / UPDATED / UNCHANGED / REAPPEARED / EXPIRED per record, with repost detection.
  • ♻️ Incremental mode — daily runs emit only new or changed listings — saves 80–95% on recurring monitoring.
  • 📤 Export anywhere — JSON, CSV, or Excel from Apify Console, or stream live via API and integrations (Make, Zapier, Sheets, n8n).

What data can you extract from OLX?

Each result includes core listing fields (title, price, dates, location, category), full vehicle specs (make, model, year, mileage, fuel type, transmission, body type, color, engine power/capacity, drivetrain, VIN, country of origin), seller details (name, type, business metadata), and contact-availability flags — all returned directly from the search response, with no separate detail-page fetch required. All fields are always present — unavailable data points are returned as null, never omitted. In compact mode, only core fields are returned.

Input

The main inputs are a search keyword, an optional location filter, and a result limit. Additional filters and options are available in the input schema.

Key parameters:

  • country — OLX country site to scrape. Poland (olx.pl) only for the passenger-car vertical in this release. (default: "PL")
  • query — Free-text keyword(s) matched against listing titles (e.g. "uszkodzony", "zamiana", "faktura VAT"). Use a JSON array ["q1", "q2"] to batch multiple keywords in one run. Leave empty to browse the full market or rely on the structured filters below.
  • startUrls — Paste an OLX car search-results URL straight from your browser (e.g. olx.pl/motoryzacja/samochody/... with any filters already applied in the URL). Each URL becomes its own task; results merge and dedupe with everything else in the run. (default: [])
  • make — Vehicle make(s), e.g. "Ford", "Volkswagen", "BMW". Common aliases are recognized ("vw" → Volkswagen, "mercedes" → Mercedes-Benz). Each make also narrows the search to its OLX subcategory for faster, more precise results. Add several to search multiple makes in one run.
  • model — Model(s) within the selected make(s), e.g. "focus", "golf", "a4". Free text — only narrows results when it matches OLX's own model value for that make. Leave empty to include every model.
  • yearMin — Minimum production year (inclusive).
  • yearMax — Maximum production year (inclusive).
  • priceMin — Minimum asking price in PLN (inclusive).
  • priceMax — Maximum asking price in PLN (inclusive).
  • mileageMax — Only listings with mileage at or below this value (kilometers).
  • enginePowerMin — Minimum engine power in horsepower (inclusive).
  • enginePowerMax — Maximum engine power in horsepower (inclusive).
  • ...and 48 more parameters

Input examples

Search by make and model — Filter to specific vehicles across the whole Polish market.

→ Full payload per result — all standard fields populated where the source provides them.

{
"make": [
"Ford"
],
"model": [
"focus"
],
"country": "PL",
"maxResults": 25
}

Scrape the whole market (unlimited) — Set maxResults to 0 for no cap. Since billing is per result, a broad unlimited run can return — and charge for — many thousands of listings; add filters or a maxResults number to bound the cost.

→ Every matching listing on OLX, newest first, with the full vehicle spec sheet on each.

{
"make": [
"BMW"
],
"country": "PL",
"maxResults": 0
}

Free-text keyword search — Match listing titles against a free-text term instead of structured filters.

→ Full payload per result — every matching listing with all standard fields populated.

{
"query": "uszkodzony",
"country": "PL",
"maxResults": 25
}

Incremental price-drop monitor — Only emit vehicles that are new or changed since the previous run with this stateKey — includes price-drop tracking.

→ First run builds the baseline state. Subsequent runs emit only records that are new or whose tracked content changed, with the previous price and drop amount on updated listings.

{
"make": [
"BMW"
],
"country": "PL",
"maxResults": 25,
"incrementalMode": true,
"stateKey": "bmw-tracker"
}

Compact output for AI agents — Return only core fields for AI-agent and MCP workflows.

→ Small payload with the most important fields — ideal for piping into LLMs without token overhead.

{
"priceMax": 20000,
"country": "PL",
"maxResults": 25,
"compact": true
}

Output

Each run produces a dataset of structured listing records. Results can be downloaded as JSON, CSV, or Excel from the Dataset tab in Apify Console.

Example listing record

{
"jobId": "397936e3b40cc19812d033c10a79b02cebbd2665b241ef21c512bfd1f5122d95",
"olxId": 1077064558,
"title": "Ford S-Max 2.0EcoBlue 190km FV-23% *serwisowany*hak*bezwypadkowy*serwisowany*",
"portalUrl": "https://www.olx.pl/d/oferta/ford-s-max-2-0ecoblue-190km-fv-23-serwisowanyhakbezwypadkowyserwisowany-CID5-ID1aTfH0.html",
"externalUrl": "https://www.otomoto.pl/osobowe/oferta/ford-s-max-2-0ecoblue-190km-fv-23-serwisowanyhakbezwypadkowyserwisowany-ID6I5Ipw.html",
"description": "GRUPA MIRAI\n\nAUTORYZOWANY DEALER FORD OFERUJE:\n\nS-MAX\n\n✔️ Wersja wyposażenia: Titanium\n\n✔️ Silnik: 2.0 (Diesel) 190KM\n\n✔️ Skrzynia biegów: Automatyczna\n\n✔️ Rok produkcji : 2022\n\n✔️ Faktura VAT 23%\n\n✔️...",
"descriptionText": "GRUPA MIRAI\n\nAUTORYZOWANY DEALER FORD OFERUJE:\n\nS-MAX\n\n✔️ Wersja wyposażenia: Titanium\n\n✔️ Silnik: 2.0 (Diesel) 190KM\n\n✔️ Skrzynia biegów: Automatyczna\n\n✔️ Rok produkcji : 2022\n\n✔️ Faktura VAT 23%\n\n✔️...",
"descriptionHtml": "GRUPA MIRAI<br />\n<br />\nAUTORYZOWANY DEALER FORD OFERUJE:<br />\n<br />\nS-MAX<br />\n<br />\n✔️ Wersja wyposażenia: Titanium<br />\n<br />\n✔️ Silnik: 2.0 (Diesel) 190KM<br />\n<br />\n✔️ Skrzynia biegów: A...",
"descriptionMarkdown": "GRUPA MIRAI\n\nAUTORYZOWANY DEALER FORD OFERUJE:\n\nS-MAX\n\n✔️ Wersja wyposażenia: Titanium\n\n✔️ Silnik: 2.0 (Diesel) 190KM\n\n✔️ Skrzynia biegów: Automatyczna\n\n✔️ Rok produkcji : 2022\n\n✔️ Faktura VAT 23%\n\n✔️...",
"descriptionLength": 3948,
"datePosted": "2026-06-01T10:38:19+02:00",
"lastRefreshedAt": "2026-07-01T10:42:05+02:00",
"pushedAt": "2026-06-25T10:37:00+02:00",
"expiresAt": "2026-07-31T10:42:05+02:00",
"categoryId": 189,
"locationCity": "Tychy",
"locationCityId": 17705,
"locationRegion": "Śląskie",
"locationRegionId": 6,
"latitude": 50.1218,
"longitude": 19.02,
"isBusinessAccount": true,
"listingStatus": "active",
"offerType": "offer",
"contactPhoneAvailable": true,
"contactChatEnabled": true,
"companyId": 23063449,
"companyName": "Otomoto",
"companyJoinedAt": "2013-05-01T08:32:22+02:00",
"companyLastSeenAt": "2026-07-03T03:14:32+02:00",
"companyIsB2C": false,
"make": "Ford",
"model": "S-Max",
"year": 2022,
"condition": "Nieuszkodzony",
"mileageKm": 145000,
"fuelType": "Diesel",
"bodyType": "Minibus",
"transmission": "Automatyczna",
"color": "Czarny",
"engineCapacityCc": 1997,
"enginePowerHp": 190,
"drivetrain": "Na przednie koła",
"countryOrigin": "Polska",
"rightHandDrive": false,
"vin": "WF0JXXWPCJNU69177",
"price": 82900,
"priceCurrency": "PLN",
"priceNegotiable": false,
"priceArranged": false,
"imageUrls": [
"https://ireland.apollo.olxcdn.com:443/v1/files/rjmyd1g2kl4v-PL/image;s={width}x{height}",
"https://ireland.apollo.olxcdn.com:443/v1/files/2a82ololjroo3-PL/image;s={width}x{height}",
"https://ireland.apollo.olxcdn.com:443/v1/files/d90yzy5evxxz-PL/image;s={width}x{height}",
"https://ireland.apollo.olxcdn.com:443/v1/files/84e08hurih123-PL/image;s={width}x{height}",
"https://ireland.apollo.olxcdn.com:443/v1/files/ssmssryfn05e2-PL/image;s={width}x{height}",
"... 3 more items"
],
"imageCount": 8,
"thumbUrls": [
"https://ireland.apollo.olxcdn.com:443/v1/files/rjmyd1g2kl4v-PL/image;s={width}x{height}",
"https://ireland.apollo.olxcdn.com:443/v1/files/2a82ololjroo3-PL/image;s={width}x{height}",
"https://ireland.apollo.olxcdn.com:443/v1/files/d90yzy5evxxz-PL/image;s={width}x{height}",
"https://ireland.apollo.olxcdn.com:443/v1/files/84e08hurih123-PL/image;s={width}x{height}",
"https://ireland.apollo.olxcdn.com:443/v1/files/ssmssryfn05e2-PL/image;s={width}x{height}",
"... 3 more items"
],
"sellerType": "business",
"sellerId": 23063449,
"sellerName": "Otomoto",
"attributes": {
"vin": "WF0JXXWPCJNU69177 ",
"price": "82 900 zł",
"model": "S-Max",
"year": "2022 ",
"petrol": "Diesel",
"car_body": "Minibus",
"color": "Czarny",
"enginesize": "1 997 cm³",
"condition": "Nieuszkodzony",
"transmission": "Automatyczna",
"country_origin": "Polska",
"enginepower": "190 KM",
"milage": "145 000 km",
"drive": "Na przednie koła",
"righthanddrive": "po lewej"
},
"scrapedAt": "2026-07-03T00:00:00Z",
"source": "olx.pl",
"contentQuality": "full",
"detailFetched": false
}

Incremental fields

When incremental mode is on, each record also carries:

  • changeType — one of NEW, UPDATED, UNCHANGED, REAPPEARED, EXPIRED. Default output covers NEW / UPDATED / REAPPEARED; set emitUnchanged: true or emitExpired: true to opt into the others.
  • firstSeenAt, lastSeenAt — ISO-8601 timestamps tracking the listing across runs.
  • isRepost, repostOfId, repostDetectedAt — populated when a new listing matches the tracked content of a previously expired one. Set skipReposts: true to drop detected reposts from the output.

How to scrape OLX

  1. Go to OLX Car Scraper in Apify Console.
  2. Enter a search keyword and optional location filter.
  3. Set maxResults to control how many results you need.
  4. Click Start and wait for the run to finish.
  5. Export the dataset as JSON, CSV, or Excel.

Use cases

  • Extract listing data from OLX for market research and competitive analysis.
  • Track pricing trends across regions and categories over time.
  • Monitor new and changed vehicles on scheduled runs without processing the full dataset every time.
  • Use structured location data for regional analysis, mapping, and geo-targeting.
  • Feed structured data into AI agents, MCP tools, and automated pipelines using compact mode.
  • Export clean, structured data to dashboards, spreadsheets, or data warehouses.

How much does it cost to scrape OLX?

OLX Car Scraper uses pay-per-event pricing. You pay a small fee when the run starts and then for each result that is actually produced.

  • Run start: $0.005 per run
  • Per result: $0.002 per listing record

Example costs:

  • 10 results: $0.025
  • 25 results: $0.055
  • 100 results: $0.21
  • 200 results: $0.41
  • 500 results: $1

Example: recurring monitoring savings

These examples compare full re-scrapes with incremental runs at different churn rates. Churn is the share of vehicles that are new or whose tracked content changed since the previous run. Actual churn depends on your query breadth, source activity, and polling frequency — the scenarios below are examples, not predictions.

Example setup: 200 results per run, daily polling (30 runs/month). Event-pricing examples scale linearly with result count.

Churn rateFull re-scrape run costIncremental run costSavings vs full re-scrapeMonthly cost after baseline
5% — stable niche query$0.41$0.03$0.38 (94%)$0.75
15% — moderate broad query$0.41$0.07$0.34 (84%)$1.95
30% — high-volume aggregator$0.41$0.13$0.28 (69%)$3.75

Full re-scrape monthly cost at daily polling: $12.15. First month with incremental costs $1.13 / $2.29 / $4.03 for the 5% / 15% / 30% scenarios because the first run builds baseline state at full cost before incremental savings apply.

Platform usage (compute and proxies) is billed separately by Apify based on actual consumption. Incremental runs consume less on result processing, though fixed per-run overhead stays the same.

FAQ

How many results can I get from OLX?

The number of results depends on the search query and available vehicles on OLX. Use the maxResults parameter to control how many results are returned per run.

Does OLX Car Scraper support recurring monitoring?

Yes. Enable incremental mode to only receive new or changed vehicles on subsequent runs. This is ideal for scheduled monitoring where you want to track changes over time without re-processing the full dataset.

Can I integrate OLX Car Scraper with other apps?

Yes. OLX Car Scraper works with Apify's integrations to connect with tools like Zapier, Make, Google Sheets, Slack, and more. You can also use webhooks to trigger actions when a run completes.

Can I use OLX Car Scraper with the Apify API?

Yes. You can start runs, manage inputs, and retrieve results programmatically through the Apify API. Client libraries are available for JavaScript, Python, and other languages.

Can I use OLX Car Scraper through an MCP Server?

Yes. Apify provides an MCP Server that lets AI assistants and agents call this actor directly. Use compact mode, descriptionMaxLength, a single descriptionFormat, and excludeEmptyFields to keep payloads manageable for LLM context windows.

This actor extracts publicly available data from OLX. Web scraping of public information is generally considered legal, but you should always review the target site's terms of service and ensure your use case complies with applicable laws and regulations, including GDPR where relevant.

Your feedback

If you have questions, need a feature, or found a bug, please open an issue on the actor's page in Apify Console. Your feedback helps us improve.

You might also like

Getting started with Apify

New to Apify? Create a free account with $5 credit — no credit card required.

  1. Sign up — $5 platform credit included
  2. Open this actor and configure your input
  3. Click Start — export results as JSON, CSV, or Excel

Need more later? See Apify pricing.