# Imobiliare.ro - Romanian Real Estate (`swerve/imobiliare-scraper`) Actor

Scrape imobiliare.ro real estate listings from Romania. Returns price, area, rooms, location, agency category, and full image gallery for sale and rent listings across all Romanian cities and counties.

- **URL**: https://apify.com/swerve/imobiliare-scraper.md
- **Developed by:** [Swerve](https://apify.com/swerve) (community)
- **Categories:** Real estate
- **Stats:** 39 total users, 12 monthly users, 97.7% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 listings

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## Imobiliare.ro Scraper - Romanian Real Estate API

Extract real estate listings from [imobiliare.ro](https://www.imobiliare.ro/), Romania's largest property platform. Returns price, area, rooms, location, full image gallery, and agency category for sale and rent listings across all Romanian cities and counties.

### What you get per listing

- `listingId`, `url` — unique ID and direct link
- `listingType` — `sale` or `rent`
- `title` — listing headline in Romanian
- `category` — Apartamente / Case-vile / Terenuri / Spații comerciale
- `price` (EUR or RON), `pricePerSqm`
- `currency` — typically EUR (sale) or RON (rent)
- `rooms` (camere), `areaSqm`
- `location` — neighborhood + sector / municipality
- `city`, `county`
- `imageUrl` — cover photo
- `imageUrls` — full image gallery (often 5-15 photos per listing)
- `scrapedAt`

### How to use

**Easy mode (recommended):** type a Romanian city name and pick listing type + property category.

```json
{
  "city": "Bucuresti",
  "listingType": "sale",
  "propertyCategory": "apartments",
  "maxItems": 200
}
```

Other examples:

```json
{ "city": "Cluj-Napoca", "listingType": "sale", "maxItems": 100 }
{ "city": "Timisoara", "listingType": "rent", "maxItems": 50 }
{ "city": "Brasov", "listingType": "sale", "propertyCategory": "houses", "maxItems": 100 }
```

Property categories supported: `apartments`, `houses`, `land`, `offices`.

**Power-user mode:** for finer filters (price range, sub-sectors, specific room counts, new-build only), set them on imobiliare.ro, copy the URL, paste into `searchUrl`.

```json
{ "searchUrl": "https://www.imobiliare.ro/vanzare-apartamente/bucuresti/sector-1/2-camere", "maxItems": 200 }
```

### Common use cases

- **Investor monitoring** — track new listings across Bucharest, Cluj, Timișoara, and other Romanian cities. Surface price drops and new developments.
- **Real-estate agencies / brokers** — pull competitor listings and pricing trends; identify agency activity.
- **Market analytics** — snapshot supply, average price per m², new-development share by city/county.
- **Map-based applications** — listings include city + county data for geographic analysis.

### Data quality

In our testing across Bucharest and Cluj-Napoca (sample of 80+ listings):

| Field | Fill rate |
|---|---|
| price, currency, category, rooms, areaSqm | 100% |
| title, url, imageUrl | 100% |
| location, city | ~99% |
| pricePerSqm | computed when both price and area are present |

### Pricing

Pay per result. See the Pricing tab for current per-result pricing. Failed runs cost nothing.

### Notes

- `title` is in Romanian. `category` is the imobiliare.ro label (Apartamente, Case-vile, etc.).
- Sale listings typically use EUR pricing; rent listings often use RON. Always check the `currency` field.
- The actor uses Apify's residential proxy (Romania) for reliable access.
- Pagination is automatic — set your desired `maxItems` and the actor walks through pages until it has enough or runs out.

Found a bug or have a feature request? Open an issue and I respond within 24h.

# Actor input Schema

## `city` (type: `string`):

Romanian city name (e.g. 'Bucuresti', 'Cluj-Napoca', 'Timisoara', 'Iasi', 'Brasov'). Required unless 'Search URL' is set.

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

Sale or rent

## `propertyCategory` (type: `string`):

Type of property

## `maxItems` (type: `integer`):

Optional cap on results. Leave blank to scrape ALL matching results (recommended); set a number only to limit cost. Starting value only, not a limit on what the Actor can do: leave it EMPTY to scrape everything in scope. It is prefilled so the first run returns results in seconds instead of sweeping a whole city or an entire account history.

## `searchUrl` (type: `string`):

Optional. Power-user override. Set your filters on imobiliare.ro (price range, sub-area, room count, etc.), copy the URL from your browser, paste here. Bypasses the structured inputs above.

## Actor input object example

```json
{
  "city": "Bucuresti",
  "listingType": "sale",
  "propertyCategory": "apartments",
  "maxItems": 60
}
```

# 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 = {
    "city": "Bucuresti",
    "maxItems": 60
};

// Run the Actor and wait for it to finish
const run = await client.actor("swerve/imobiliare-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 = {
    "city": "Bucuresti",
    "maxItems": 60,
}

# Run the Actor and wait for it to finish
run = client.actor("swerve/imobiliare-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 '{
  "city": "Bucuresti",
  "maxItems": 60
}' |
apify call swerve/imobiliare-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,swerve/imobiliare-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/IvjTvLlykQMvErcym/builds/MYxMg8fRLTf7E1Yvd/openapi.json
