# GetHome.pl Scraper - Polish Real Estate Listings (`studio-amba/gethome-pl-scraper`) Actor

Scrape real estate listings from GetHome.pl, one of Poland's property portals. Extract prices, areas, rooms, coordinates, agency details and images for apartments, houses and land — both aftermarket and primary-market, sale and rental listings. No login needed.

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

## Pricing

from $1.20 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## GetHome.pl Scraper

Extract real estate listings from [GetHome.pl](https://gethome.pl), a Polish property portal covering apartments, houses, and land across every Polish city and voivodeship. Listings come from agencies, developers, and private sellers, spanning both the aftermarket (resale) and the primary market (new-build developer projects).

### Why use this actor?

GetHome.pl runs its own independent listings database, separate from the Otodom/OLX group and from Domiporta. That means inventory here isn't a full mirror of what you'd find on the bigger portals — useful if you're already tracking Otodom, Domiporta, or Adresowo and want to close coverage gaps, or if you just want a second source to cross-check prices.

This actor pulls structured property data at scale: price, price per m², area, room count, floor, exact coordinates, voivodeship/city/district/street, agency name, seller type (private owner vs. agency), build year, and every listing photo. No manual browsing, no cookies, no login.

Use cases: property market analysis, investment research, relocation planning, price monitoring across Polish cities, geospatial analysis (every listing carries latitude/longitude), academic housing studies, and competitor tracking for real estate agencies.

### How to scrape GetHome.pl data

1. Go to the actor's page on the Apify Store
2. Select a property type (apartments, houses, or land)
3. Choose listing type: sale or rent (land is sale-only on GetHome.pl)
4. Enter a location (e.g. "warszawa", "krakow", "wroclaw") or leave empty for all of Poland
5. Set `maxResults` for the number of listings to collect
6. Click "Start" to run the scraper
7. Download results as JSON, CSV, or Excel when complete

The actor reads `window.__INITIAL_STATE__`, a JSON state object GetHome.pl renders server-side into every search results page. It already contains the full listing card data (price, area, rooms, coordinates, agency, description, images) — no browser rendering and no extra detail-page visit needed, so it's fast and cheap to run.

### Input

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `propertyType` | String | No | `mieszkanie` (apartments, default), `dom` (houses), `dzialka` (land) |
| `listingType` | String | No | `sale` (default) or `rent`. Ignored for land, which is sale-only. |
| `location` | String | No | Polish city, e.g. "warszawa", "krakow", "wroclaw", "gdansk". Defaults to "warszawa". Empty = all Poland. |
| `maxResults` | Integer | No | Maximum listings to return (default: 50) |
| `proxyConfiguration` | Object | No | Proxy settings. Automatic Apify proxy by default — recon found Cloudflare present but passthrough (plain 200 OK, no active challenge). |

### Output

Each listing contains:

| Field | Type | Example |
|-------|------|---------|
| `listingTitle` | String | `"Warszawa, Mokotów, Służewiec, ul. Postępu"` |
| `propertyType` | String | `"mieszkanie"` |
| `listingType` | String | `"sale"` |
| `marketType` | String or null | `"aftermarket"` or `"primary_market"` |
| `sellerType` | String or null | `"owner"` or `"agency"` |
| `price` | Number or null | `777178` — null on a minority of primary-market pre-launch units where GetHome.pl withholds price ("ask for price") |
| `currency` | String | `"PLN"` |
| `pricePerSqm` | Number or null | `20976` |
| `area` | Number or null | `37.05` |
| `rooms` | Number or null | `2` — not applicable to land |
| `floor` | String or null | `"7"` — apartments only |
| `location` | String | `"Warszawa, Mokotów, Służewiec"` |
| `city` | String or null | `"Warszawa"` |
| `district` | String or null | `"Mokotów"` |
| `street` | String or null | `"ul. Postępu"` |
| `voivodeship` | String or null | `"mazowieckie"` |
| `latitude` | Number or null | `52.17319` |
| `longitude` | Number or null | `20.99213` |
| `buildYear` | Number or null | `2026` |
| `agencyName` | String or null | `"Platforma Mieszkaniowa"` |
| `listingDescription` | String or null | Listing description text |
| `imageUrl` | String or null | Primary listing photo URL |
| `imageUrls` | Array | All listing photo URLs |
| `datePosted` | String or null | ISO 8601 timestamp, as published by GetHome.pl |
| `url` | String | Full GetHome.pl listing URL |
| `scrapedAt` | String | ISO 8601 timestamp of when the data was scraped |

### Example output

```json
{
  "listingTitle": "Warszawa, Mokotów, Służewiec, ul. Postępu",
  "propertyType": "mieszkanie",
  "listingType": "sale",
  "marketType": "aftermarket",
  "sellerType": "agency",
  "price": 777178,
  "currency": "PLN",
  "pricePerSqm": 20976,
  "area": 37.05,
  "rooms": 2,
  "floor": "7",
  "location": "Warszawa, Mokotów, Służewiec",
  "city": "Warszawa",
  "district": "Mokotów",
  "street": "ul. Postępu",
  "voivodeship": "mazowieckie",
  "latitude": 52.17319,
  "longitude": 20.99213,
  "buildYear": 2026,
  "agencyName": "Platforma Mieszkaniowa",
  "listingDescription": "0% PROWIZJI, BEZ PODATKU PCC 2%, ZAKUP BEZPOŚREDNIO OD DEWELOPERA...",
  "imageUrl": "https://thumbs.gethome.pl/7cd1bcfd:8HgGTKCvLUv29-fobTJPA_wRMjk/500x0/filters:no_upscale()/media/esti/platformamieszk/114652103-d211b25f.jpg",
  "imageUrls": [
    "https://thumbs.gethome.pl/7cd1bcfd:8HgGTKCvLUv29-fobTJPA_wRMjk/500x0/filters:no_upscale()/media/esti/platformamieszk/114652103-d211b25f.jpg"
  ],
  "datePosted": "2026-09-01T15:32:28.363330Z",
  "url": "https://gethome.pl/oferta/sprzedam-mieszkanie-warszawa-ul-postepu-37m2-dwupokojowe-7-pietro-z-2026-roku-2370930/",
  "scrapedAt": "2026-09-02T14:07:08.046Z"
}
```

### Property types and locations

`propertyType` accepts:

- `mieszkanie` — apartments (sale or rent)
- `dom` — houses (sale or rent)
- `dzialka` — land / plots (sale only)

`location` accepts any Polish city name in Latin script (e.g. "warszawa", "krakow", "lodz", "gdansk", "wroclaw", "poznan"). Leave empty to search nationwide.

### Cost estimate

This actor uses `CheerioCrawler` (plain HTTP, no browser rendering) against the automatic Apify proxy pool, so it's inexpensive to run. A 50-listing run typically completes in under 10 seconds of crawler runtime and costs a fraction of a compute unit. Larger runs (thousands of listings) scale linearly with pagination — the actor fetches ~35 listings per page request.

Costs depend on proxy usage and the number of pages scraped. Usage cost only settles once the run reports SUCCEEDED — a mid-run dataset read will undercount the final charge.

### Limitations

- Price is null for a minority of primary-market (new-build) listings where GetHome.pl has not published a unit price yet ("zapytaj o cenę" / ask for price on the site). This reflects the source data, not an extraction gap.
- Land listings (`dzialka`) don't have room count or floor data — not applicable to plots.
- GetHome.pl paginates in fixed pages of ~35 listings; `maxResults` is capped by how many pages the search actually returns for narrow city/property combinations.

### Related scrapers

Part of Studio AMBA's Polish real estate cluster:

- [Domiporta.pl Scraper](https://apify.com/studioamba/domiporta-pl-scraper) — general listings portal, apartments/houses/land/commercial
- [Adresowo.pl Scraper](https://apify.com/studioamba/adresowo-pl-scraper) — owner-vs-agency filtered listings
- [Rynekpierwotny.pl Scraper](https://apify.com/studioamba/rynekpierwotny-pl-scraper) — primary market (new-build) development projects only

Combine all four for the broadest possible coverage of the Polish residential property market, spanning aftermarket resales, primary-market developer projects, and both agency and private-owner inventory.

# Actor input Schema

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

Type of property to search for on GetHome.pl.

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

Search for properties for sale or for rent. Ignored for land (Dzialka), which is sale-only on GetHome.pl.

## `location` (type: `string`):

Polish city to search, e.g. 'warszawa', 'krakow', 'wroclaw', 'gdansk'. Defaults to Warszawa. Leave empty to search all of Poland.

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

Maximum number of property listings to scrape.

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

GetHome.pl sits behind Cloudflare but returns plain 200 OK pages with no active challenge (recon 2026-09-02) — automatic Apify proxy is the default. Switch to Residential (Poland) only if you see blocked/empty runs.

## Actor input object example

```json
{
  "propertyType": "mieszkanie",
  "listingType": "sale",
  "location": "warszawa",
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# 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 = {
    "propertyType": "mieszkanie",
    "listingType": "sale",
    "location": "warszawa",
    "maxResults": 20,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("studio-amba/gethome-pl-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 = {
    "propertyType": "mieszkanie",
    "listingType": "sale",
    "location": "warszawa",
    "maxResults": 20,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("studio-amba/gethome-pl-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 '{
  "propertyType": "mieszkanie",
  "listingType": "sale",
  "location": "warszawa",
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call studio-amba/gethome-pl-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,studio-amba/gethome-pl-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/wcqxePwtEBsGpFnZ9/builds/fmDAMrPJMQY4VVqMs/openapi.json
