# Changelog of OLX Real Estate Scraper (`codingfrontend/olx-real-estate-scraper`) Actor

- **URL**: https://apify.com/codingfrontend/olx-real-estate-scraper/changelog.md
- **Full Actor documentation**: https://apify.com/codingfrontend/olx-real-estate-scraper.md

## Changelog

All notable changes to the OLX Real Estate Scraper are documented here.

### \[1.0.0] - 2026-05-21

#### Added

- Initial production release of the OLX Real Estate Scraper.
- Dual-mode architecture: API mode and Playwright mode for location-specific results.
- Multi-country OLX domain support for real estate listings.
- Supports `propertyType` filter (apartment, house, land, office, etc.).
- Price range filters (`priceMin`, `priceMax`) and keyword filtering.
- Modular project structure:
  - `src/main.js` — entry point with input validation and crawler init.
  - `src/routes.js` — Crawlee router factory.
  - `src/routes/handlers.js` — page handler with pagination logic.
  - `src/extractors/` — real estate listing data extraction.
  - `src/filters/` — deduplication logic.
  - `src/schema/input.js` — input validation.
  - `src/utils/` — URL builder, domain resolver, API helpers.
  - `src/errors/` — `ScraperError`, `ErrorTypes`, `ErrorHandler`.
- Output fields: `title`, `price`, `location`, `listingUrl`, `postedAt`, `description`, `category`, `listingId`, `isNegotiable`, `scrapedAt`.
- `.actor/actor.json`, `input_schema.json`, `dataset_schema.json` for Apify platform compatibility.
- Dataset views in `dataset_schema.json` for Apify Storage table display.
- `validate-datasets.js` for local dataset output validation.
- `Dockerfile` for Apify cloud deployment.
