# TopReality.sk Scraper - Slovak Real Estate Data (`studio-amba/topreality-sk-scraper`) Actor

Scrape real estate listings from TopReality.sk, Slovakia's #2 property portal with 60,000+ active listings. Extract apartments, houses, land, offices and commercial objects -- price, area, rooms, floor, location and photos for sale and rental listings. No login needed.

- **URL**: https://apify.com/studio-amba/topreality-sk-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

## TopReality.sk Scraper

Extract real estate listings from [TopReality.sk](https://www.topreality.sk), Slovakia's #2 property portal with over 60,000 active listings nationwide. This actor scrapes apartments, houses, land, offices and commercial objects, for sale and for rent, across all 8 Slovak regions.

### Why use this actor?

TopReality.sk is a full-market Slovak portal — apartments alone run close to 20,000 listings at any time, with domy (houses), pozemky (land), priestory (offices/commercial units) and objekty (buildings/investment objects) each running in the thousands more. It sits alongside Nehnutelnosti.sk as one of the two general-purpose portals every serious search of the Slovak market needs to cover, since agencies and private sellers don't cross-post everywhere.

This actor pulls each listing's full detail page rather than stopping at the search-results summary, so fields like usable area, floor, elevator, balcony, construction material and property condition — the fields agencies leave off the listing card — come through in every run, not just price and title.

Two things set this build apart from a typical listing scraper:

- **Structured data twice, for redundancy.** TopReality.sk stamps every search-result card with hidden analytics attributes carrying price, category and location. This actor reads those directly, then cross-checks them against the detail page. If either source glitches on a given listing, the other backs it up — no more silent blanks on fields other scrapers miss.
- **Prices are never guessed.** When a listing reads "Cena dohodou" (price on request), the `price` field is `null`, not `0`. Rental prices carry a `priceUnit` field (`total` vs `per_month`) so a €650/month rental is never confused with a €650 sale price in downstream analysis.

Use cases include property market research, investment sourcing, agency competitor tracking, price-per-m² benchmarking by region, and relocation planning.

### How to scrape TopReality data

1. Go to the actor's page on the Apify Store
2. Pick a property category: apartments (byty), houses (domy), land (pozemky), offices/commercial (priestory), or buildings (objekty)
3. Choose sale or rent
4. Optionally narrow to one of the 8 Slovak regions (kraje), or leave empty to search all of Slovakia
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 the run finishes

The actor is a plain HTTP crawler (Cheerio, no headless browser). TopReality.sk serves every search page and listing fully rendered in the initial HTML response — no JavaScript execution needed to reach the data. That keeps runs fast and the per-result cost low.

### Input

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | String | No | `byty` (apartments, default), `domy` (houses), `pozemky` (land), `priestory` (offices/commercial), `objekty` (buildings) |
| `transactionType` | String | No | `sale` (default) or `rent` |
| `region` | String | No | Slovak region (kraj), e.g. `kosicky`, `bratislavsky`. Leave empty for all of Slovakia. |
| `maxResults` | Integer | No | Maximum listings to return (default: 50, capped at 2000 per run) |
| `proxyConfiguration` | Object | No | Proxy settings. Automatic Apify proxy by default — live testing found no active anti-bot enforcement on TopReality.sk. |

### Output

Each listing contains:

| Field | Type | Example |
|-------|------|---------|
| `listingId` | String | `"9401846"` |
| `listingTitle` | String | `"MODERNÝ 2 IZBOVÝ BYT S BALKÓNOM A PARKOVACÍM MIESTOM"` |
| `price` | Number or null | `149900` |
| `currency` | String | `"EUR"` |
| `priceUnit` | String | `"total"` (sale) or `"per_month"` (rent) |
| `pricePerSqm` | Number or null | `3792` |
| `category` | String | `"byty"` |
| `propertyType` | String | `"2 izbový byt"` |
| `transactionType` | String | `"sale"` |
| `rooms` | Number or null | `2` |
| `area` | Number or null | `40` |
| `floor` | String or null | `"2 / 2"` |
| `hasElevator` | Boolean or null | `true` |
| `balcony` | Boolean or null | `true` |
| `material` | String or null | `"tehla"` |
| `condition` | String or null | `"Novostavba"` |
| `region` | String or null | `"Košice I"` (broader locality from the listing's Lokalita field) |
| `location` | String or null | `"Košice-Sever"` (most specific place name from the same field) |
| `street` | String or null | `"Národná trieda"` |
| `agencyName` | String or null | `"MACHAC REAL ESTATE"` |
| `sellerType` | String or null | `"agency"` or `"private"` |
| `imageUrl` | String or null | Main photo URL |
| `imageUrls` | Array | All gallery photo URLs for this listing |
| `updatedAt` | String or null | `"5.9.2026 21:30:01"` (site's own timestamp) |
| `url` | String | Full TopReality.sk listing URL |
| `scrapedAt` | String | ISO 8601 timestamp |

#### Sample output

```json
{
  "listingId": "9398928",
  "listingTitle": "2 izb. byt - ul. Národná Trieda",
  "price": 209990,
  "currency": "EUR",
  "priceUnit": "total",
  "pricePerSqm": 3442,
  "category": "byty",
  "propertyType": "2 izbový byt",
  "transactionType": "sale",
  "rooms": 2,
  "area": 61,
  "floor": "2 / 5",
  "hasElevator": null,
  "balcony": true,
  "material": "tehla",
  "condition": "čiastočná rekonštrukcia",
  "region": "Košice I",
  "location": "Košice-Sever",
  "street": "Národná trieda",
  "agencyName": "OPEN real, s.r.o.,",
  "sellerType": "agency",
  "imageUrl": "https://www.topreality.sk/topfoto/t/939/9398928-1-18.jpg",
  "imageUrls": ["https://www.topreality.sk/topfoto/t/939/9398928-1-18.jpg", "..."],
  "updatedAt": "5.9.2026 19:06:01",
  "url": "https://www.topreality.sk/2-izb-byt-ul-narodna-trieda-r9398928.html",
  "scrapedAt": "2026-09-05T19:45:05.103Z"
}
```

### Cost and performance

This actor fetches one search-results page per ~16-18 listings, plus one detail-page request per listing — roughly 1 request per result plus a shared search-page overhead. On the automatic Apify proxy pool with no browser overhead, cost works out to about $0.002-0.005 per result, well under a cent per item, since there's no headless browser and no residential proxy surcharge.

Usage cost only settles once a run reports SUCCEEDED — checking the dataset or cost estimate mid-run (before the run finishes) will undercount what the run actually costs.

### Regions covered

All 8 Slovak kraje: Bratislavský, Trnavský, Trenčiansky, Nitriansky, Žilinský, Banskobystrický, Prešovský, Košický.

### Limitations

- Phone numbers are revealed behind a click-to-call widget on TopReality.sk and are not extracted.
- Listing descriptions (free text) are not currently extracted — the structured fields (price, area, rooms, floor, material, condition) cover most analytical use cases.
- Houses, land and commercial listings (`domy`, `pozemky`, `priestory`, `objekty`) don't always state a room count on TopReality.sk itself — `rooms` is `null` for those, which reflects the source listing, not a parsing gap.

### Related Scrapers

- [Nehnutelnosti Scraper](https://apify.com/studio-amba/nehnutelnosti-scraper) — Slovakia's #1 real estate portal
- [Sreality Scraper](https://apify.com/studio-amba/sreality-scraper) — Czech Republic's leading real estate portal
- [Adresowo.pl Scraper](https://apify.com/studio-amba/adresowo-pl-scraper) — Polish commission-free property portal
- [Otodom Scraper](https://apify.com/studio-amba/otodom-scraper) — Poland's largest real estate portal
- [Immobiliare Scraper](https://apify.com/studio-amba/immobiliare-scraper) — Italy's leading real estate portal

### Support

Found an issue or need a custom field added? Open an issue on the actor's Apify Store page and we'll take a look.

# Actor input Schema

## `category` (type: `string`):

Type of property to search for on TopReality.sk.

## `transactionType` (type: `string`):

Search for properties for sale or for rent.

## `region` (type: `string`):

Slovak region to search. Leave empty to search all of Slovakia.

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

Maximum number of property listings to scrape. Capped at 2000 per run to keep run duration reasonable -- start a new run with a region filter to go deeper into one area.

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

TopReality.sk ships F5 BIG-IP WAF cookies but live testing (2026-09-05) showed no enforcement -- automatic Apify proxy and residential returned identical results, even with a bare curl user agent. Automatic pool is the default; switch to Residential (Slovakia) only if you see blocked/empty runs.

## Actor input object example

```json
{
  "category": "byty",
  "transactionType": "sale",
  "region": "bratislavsky",
  "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 = {
    "category": "byty",
    "transactionType": "sale",
    "region": "bratislavsky",
    "maxResults": 20,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("studio-amba/topreality-sk-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 = {
    "category": "byty",
    "transactionType": "sale",
    "region": "bratislavsky",
    "maxResults": 20,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("studio-amba/topreality-sk-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 '{
  "category": "byty",
  "transactionType": "sale",
  "region": "bratislavsky",
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call studio-amba/topreality-sk-scraper --silent --output-dataset

```

## MCP server setup

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