# Otodom Scraper - Polish Real Estate Listings & Prices (`studio-amba/otodom-scraper`) Actor

Scrape property listings from Otodom.pl, Poland's largest real estate portal. Extract prices, locations, surfaces, rooms, images, and agency details for apartments, houses, plots, and commercial properties. No login needed.

- **URL**: https://apify.com/studio-amba/otodom-scraper.md
- **Developed by:** [Studio Amba](https://apify.com/studio-amba) (community)
- **Categories:** Real estate
- **Stats:** 27 total users, 4 monthly users, 99.4% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $8.00 / 1,000 result scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Otodom Scraper

Catch a new [Otodom.pl](https://www.otodom.pl) listing the moment it posts, filtered by city, listing type, or property type — instead of refreshing the site by hand. This actor pulls prices, price per m2, surface, rooms, floor, and GPS coordinates from Poland's largest property portal, owned by OLX Group, covering apartments, houses, rooms, plots, and commercial listings across all 16 voivodeships.

### Why use this actor?

Otodom.pl aggregates hundreds of thousands of active listings from agencies and private sellers. This actor lets you collect that data at scale — prices, price per m2, locations, surfaces, rooms, floor numbers, images, GPS coordinates, and agent details — without manual browsing or login requirements.

Use cases include market analysis, investment research, relocation planning, price monitoring across Polish cities, academic housing studies, and competitor tracking.

### How to scrape Otodom data

1. Go to the actor's page on the Apify Store
2. Enter a Polish city name (e.g., "Warszawa", "Krakow", "Gdansk") or paste an Otodom.pl search URL
3. Choose listing type (sale or rent) and property type (apartment, house, room, plot, commercial)
4. Click "Start" to run the scraper
5. Download results as JSON, CSV, or Excel when complete

The actor handles Otodom.pl's Cloudflare protection automatically using residential proxies and browser fingerprinting. Data is extracted from Next.js server-rendered JSON for maximum reliability.

### Input

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `searchQuery` | String | No | City or region to search, e.g., "Warszawa", "Krakow", "Wroclaw". Defaults to "Warszawa". |
| `startUrls` | Array | No | Otodom.pl search or detail URLs. Overrides searchQuery if provided. |
| `listingType` | String | No | `sale` (default) or `rent` |
| `propertyType` | String | No | `mieszkanie` (apartment, default), `dom` (house), `pokoj` (room), `dzialka` (plot), `lokal` (commercial) |
| `maxResults` | Integer | No | Maximum listings to return (default: 100) |
| `proxyConfiguration` | Object | No | Proxy settings. Residential proxies required — configured by default. |

### Output

Each listing contains:

| Field | Type | Example |
|-------|------|---------|
| `title` | String | `"Mieszkanie 3-pokojowe, Mokotow, Warszawa"` |
| `price` | Number | `850000` |
| `currency` | String | `"PLN"` |
| `pricePerSqm` | Number | `14500` |
| `listingType` | String | `"sale"` |
| `propertyType` | String | `"mieszkanie"` (Polish vocabulary — see Input table above) |
| `city` | String | `"Warszawa"` |
| `district` | String | `"Mokotow"` |
| `province` | String | `"mazowieckie"` |
| `rooms` | Number | `3` |
| `floor` | Number | `4` |
| `totalFloors` | Number | `10` |
| `surface` | Number | `58.5` |
| `imageUrl` | String | Primary listing photo URL |
| `imageUrls` | Array | All listing photo URLs |
| `description` | String | Full property description text |
| `latitude` | Number | `52.1935` |
| `longitude` | Number | `21.0356` |
| `agencyName` | String | `"Metrohouse"` |
| `agencyUrl` | String | Agency profile URL on Otodom |
| `datePublished` | String | `"2026-05-20"` |
| `url` | String | Full Otodom.pl listing URL |
| `scrapedAt` | String | ISO 8601 timestamp |

### Example output

```json
{
    "title": "Mieszkanie 3-pokojowe, Mokotow, Warszawa",
    "price": 850000,
    "currency": "PLN",
    "pricePerSqm": 14500,
    "listingType": "sale",
    "propertyType": "mieszkanie",
    "city": "Warszawa",
    "district": "Mokotow",
    "province": "mazowieckie",
    "rooms": 3,
    "floor": 4,
    "totalFloors": 10,
    "surface": 58.5,
    "imageUrl": "https://ireland.apollo.olxcdn.com/...",
    "description": "Przestronne mieszkanie w doskonalej lokalizacji...",
    "latitude": 52.1935,
    "longitude": 21.0356,
    "agencyName": "Metrohouse",
    "datePublished": "2026-05-20",
    "url": "https://www.otodom.pl/pl/oferta/mieszkanie-3-pokojowe-mokotow-ID12345",
    "scrapedAt": "2026-05-29T14:30:00.000Z"
}
```

### Cost estimate

This actor uses Playwright with residential proxies, making it more resource-intensive than simple HTTP scrapers. Approximate costs:

- **~50 results**: $0.10-0.25 in platform credits
- **~500 results**: $0.50-1.50 in platform credits
- **~5,000 results**: $3.00-8.00 in platform credits

Costs depend on Cloudflare challenge frequency and proxy usage.

### Tips for best results

- **Use residential proxies** (configured by default). Datacenter proxies will be blocked by Cloudflare.
- **Polish IP preferred** — Polish residential proxies have the highest success rate.
- **Start small** — test with `maxResults: 20` before running large scrapes.
- **Use specific cities** — searching for "Warszawa" returns more focused results than broad searches.
- **Property types in Polish** — use `mieszkanie`, `dom`, `pokoj`, `dzialka`, `lokal` for filtering.

### Limitations

- Otodom.pl uses Cloudflare protection. Success rate depends on proxy quality and browser fingerprinting.
- Some listings may have limited data depending on what the seller/agent published.
- The actor scrapes the public website. No login or authentication is used.
- Scraping speed is limited to avoid triggering additional anti-bot measures.
- Price data reflects the listed asking price, not the final transaction price.
- Results per search page are capped at 36 by Otodom.

### Related scrapers

- [OLX Scraper](https://apify.com/itsnotyouitsme/olx-scraper) — OLX.pl classifieds (same parent company as Otodom)
- [Immoweb Scraper](https://apify.com/itsnotyouitsme/immoweb-scraper) — Belgium's #1 real estate portal
- [ImmoScout24 Scraper](https://apify.com/itsnotyouitsme/immoscout24-scraper) — German/Austrian real estate
- [Immobiliare Scraper](https://apify.com/itsnotyouitsme/immobiliare-scraper) — Italian real estate listings
- [Idealista Scraper](https://apify.com/itsnotyouitsme/idealista-scraper) — Spanish real estate portal
- [Funda Scraper](https://apify.com/itsnotyouitsme/funda-scraper) — Dutch real estate listings

### Need this data on a schedule, or a custom version?

We run this scraper as a managed service for businesses: scheduled runs,
deduplication, delta detection, and delivery to your inbox, Google Sheets,
or API — maintenance included. We can also build a custom version with your
exact fields and filters, or combine multiple sources into one feed.

See [studioamba.dev/services](https://studioamba.dev/services/) or email
<hello@studioamba.dev> for a free data sample.
We maintain 300+ European web scrapers and answer within one business day.

# Actor input Schema

## `searchQuery` (type: `string`):

City or region to search for properties, e.g., 'Warszawa', 'Krakow', 'Gdansk', 'Wroclaw'. Defaults to 'Warszawa' if empty.

## `startUrls` (type: `array`):

Otodom.pl search or property detail URLs. Overrides searchQuery if provided.

## `listingType` (type: `string`):

Search for properties for sale or for rent.

## `propertyType` (type: `string`):

Type of property to search for. Leave empty for apartments (default).

## `maxResults` (type: `integer`):

Maximum number of property listings to scrape.

## `proxyConfiguration` (type: `object`):

Residential proxies are required — Otodom.pl blocks datacenter IPs with Cloudflare. Polish residential proxies are recommended for best results.

## Actor input object example

```json
{
  "searchQuery": "Warszawa",
  "startUrls": [
    {
      "url": "https://www.otodom.pl/pl/wyniki/sprzedaz/mieszkanie/cala-polska?page=1"
    }
  ],
  "listingType": "sale",
  "propertyType": "mieszkanie",
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "PL"
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchQuery": "Warszawa",
    "startUrls": [
        {
            "url": "https://www.otodom.pl/pl/wyniki/sprzedaz/mieszkanie/cala-polska?page=1"
        }
    ],
    "maxResults": 20,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "PL"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("studio-amba/otodom-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchQuery": "Warszawa",
    "startUrls": [{ "url": "https://www.otodom.pl/pl/wyniki/sprzedaz/mieszkanie/cala-polska?page=1" }],
    "maxResults": 20,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "PL",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("studio-amba/otodom-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchQuery": "Warszawa",
  "startUrls": [
    {
      "url": "https://www.otodom.pl/pl/wyniki/sprzedaz/mieszkanie/cala-polska?page=1"
    }
  ],
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "PL"
  }
}' |
apify call studio-amba/otodom-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,studio-amba/otodom-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/ivXysrxVH1egbRGwb/builds/VVfdRdFXZP1SXthee/openapi.json
