OLX Global Scraper avatar

OLX Global Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
OLX Global Scraper

OLX Global Scraper

Scrape OLX classified-ad listings across 24 countries (Poland, Ukraine, Brazil, India, Pakistan, Indonesia, Argentina, Türkiye, Portugal, ...). Search by keyword, browse by category / city, fetch listing details, list seller ads, or accept any OLX URL.

Pricing

from $3.00 / 1,000 results

Rating

5.0

(16)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

16

Bookmarked

8

Total users

3

Monthly active users

11 days ago

Last modified

Share

Scrape classified-ad listings from OLX across 24 countries — Poland, Ukraine, Brazil, Romania, Bulgaria, India, Pakistan, Indonesia, Argentina, Colombia, Chile, Peru, Türkiye, South Africa, Kazakhstan, Uzbekistan, Morocco, Algeria, Tunisia, Lebanon, Jordan, Qatar, Portugal, Dominican Republic.

Search by keyword, browse by category or city, fetch single-listing detail pages, list a seller's ads, or paste any OLX URL.

What you can do

  • Search listings by free-text query in any of OLX's 24 country sites.
  • Browse a category (cars, electronics, real estate, jobs, fashion, ...).
  • Browse a city / region within a country (with optional keyword filter).
  • Fetch single listing details — full description, all photos, breadcrumb category, seller name, price, location.
  • List a seller's listings — every active ad on a user profile.
  • Paste any OLX URL — listing, search, category, city, seller — and the actor classifies it automatically.

Supported countries

CodeCountryDomainCurrency
plPolandolx.plPLN
uaUkraineolx.uaUAH
roRomaniaolx.roRON
bgBulgariaolx.bgBGN
kzKazakhstanolx.kzKZT
uzUzbekistanolx.uzUZS
brBrazilolx.com.brBRL
arArgentinaolx.com.arARS
coColombiaolx.com.coCOP
clChileolx.clCLP
pePeruolx.com.pePEN
doDominican Republicolx.com.doDOP
inIndiaolx.inINR
pkPakistanolx.com.pkPKR
idIndonesiaolx.co.idIDR
trTürkiyeolx.com.trTRY
zaSouth Africaolx.co.zaZAR
maMoroccoolx.maMAD
dzAlgeriaolx.dzDZD
tnTunisiaolx.com.tnTND
lbLebanonolx.com.lbLBP
joJordanolx.com.joJOD
qaQatarolx.com.qaQAR
ptPortugalolx.ptEUR

Output fields

FieldTypeDescription
listingIdstringOLX listing ID.
titlestringListing title.
priceintegerNumeric price in the country's local currency.
priceTextstringOriginal price string as shown on OLX (preserves "Free" / "Swap").
currencystringISO-4217 currency code.
descriptionstringFull description (truncated at 30k chars on detail mode).
categorystringTop-level category from breadcrumb.
subcategorystringSecond-level category.
breadcrumbsstring[]Full breadcrumb chain.
citystringListing's city / region.
locationDatestringCombined location + posted-date string from card.
postedAtTextstringPosted-date string as shown ("Yesterday", "08 May 2026").
sellerNamestringSeller display name.
sellerUrlstringSeller profile URL.
imagesstring[]All listing image URLs (detail mode).
thumbnailUrlstringPrimary image URL.
listingUrlstringCanonical listing URL.
countrystringTwo-letter country code.
countryNamestringFull country name.
recordTypestringAlways listing.
siteNamestringOLX.
scrapedAtstring (ISO-8601)

Modes & input

ModeWhat it doesRequired input
searchListingsFree-text search on the chosen country site.country, query
byCategoryBrowse a top-level category.country, category
byCityBrowse a city or region.country, city (optionally query/category)
byListingFetch one or more listing detail pages.listingUrls
bySellerList all of a seller's listings.sellerUrl
byUrlMix any OLX URLs across countries.urls

Filters

  • condition — new / used / any.
  • priceMin, priceMax — numeric, in the country's local currency.
  • fetchListingDetails — for search/category/city modes, also fetch each listing's detail page (full description + all photos). Adds 1 HTTP request per listing.
  • maxItems — hard cap (1–1000).
  • maxPages — paginated listing pages (?page=N) to crawl per seed.
  • useProxy / proxyConfiguration / autoEscalateOnBlock — proxy controls. Most countries work direct; Brazil and India auto-escalate to Apify proxy on a 403.

Daily test prefill

country=pl, mode=searchListings, query="laptop", maxItems=10 — Poland is OLX's biggest market and always returns ≥10 listings.

Reliability

  • HTTP-only via curl_cffi (Chrome 131 fingerprint). No browser, no Playwright.
  • Retries on 429/5xx with exponential backoff.
  • Auto-escalates to Apify proxy on the first 403/429/Cloudflare challenge.
  • Recursive omit-empty before every record push (no null / "" / [] fields).

FAQ

Q: Some country sites return 403 from datacenter IPs — what do I do?
Enable useProxy=true (or rely on autoEscalateOnBlock, which is on by default). Brazil (olx.com.br) and India (olx.in) commonly need a residential proxy.

Q: Does this work for OLX Russia?
No — OLX shut down olx.ru years ago.

Q: Can I run multiple countries in one run?
Use mode=byUrl with URLs from different countries — the actor auto-detects the country per URL. Otherwise pick one country per run.

Q: Are price values comparable across countries?
No — price is in the country's local currency (currency field). Convert externally if you need cross-country comparison.

Q: Why don't I see seller phone numbers?
OLX hides phone numbers behind a click + captcha. Out of scope for this actor; consider it a separate concern.

Q: bySeller returns 0 records — bug?
On most country sites, OLX renders the seller's listings client-side via JavaScript. The actor is HTTP-only, so it cannot execute that JS. Use searchListings with query + fetchListingDetails=true, then group records in your downstream pipeline by sellerUrl.

Q: How is category filled?
On detail-mode records, from the page's breadcrumb. On card-mode records, the breadcrumb isn't rendered; enable fetchListingDetails=true if you need it on every listing.