# xe.gr - Greek Real Estate (`swerve/xe-scraper`) Actor

Scrape real estate listings from xe.gr, Greece's #1 classifieds site. Returns price, area, rooms, location, images, and floor for rent and sale listings. Paste any xe.gr search URL.

- **URL**: https://apify.com/swerve/xe-scraper.md
- **Developed by:** [Swerve](https://apify.com/swerve) (community)
- **Categories:** Real estate, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

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/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## xe.gr Scraper — Greek Real Estate API

Extract real estate listings from [xe.gr](https://www.xe.gr/property), Greece's #1 classifieds site. Returns clean structured data for both rent and sale listings: price, area, rooms, location, images, floor, year built, and more.

### What you get per listing

**Always returned (basic):**
- `listingId` — xe.gr UUID
- `url` — direct link to the listing
- `listingType` — `rent` or `sale`
- `propertyType` — apartment, maisonette, house, etc.
- `price` (EUR), `pricePerSqm` (EUR/sqm)
- `areaSqm`, `rooms`, `bathrooms`, `floor`, `yearBuilt`
- `city`, `neighbourhood`, `rawAddress`, `imageUrl`
- `scrapedAt`

**With `enrichListings: true` (full details):**
- `description` — full listing text
- `streetAddress` — exact street + number
- `postalCode`, `region` — administrative location
- `images` — full image gallery (typically 10-25 photos)
- `datePosted` — exact upload timestamp
- `renovationYear`, `energyClass` (A+ through Z)
- `airConditioning`, `furnished`, `heating`, `heatingType`
- `shortTermAvailable`, `availableFrom`
- `agentName` — listing agent or agency name

### How to use

**Easy mode (recommended):** type a Greek city or area name and pick listing type. The actor resolves it via xe.gr's own location service.

```json
{
  "location": "Athens",
  "listingType": "rent",
  "propertyCategory": "residential",
  "maxItems": 200
}
````

Other examples:

```json
{ "location": "Mykonos", "listingType": "rent", "maxItems": 50 }
{ "location": "Thessaloniki", "propertyCategory": "commercial", "maxItems": 100 }
{ "location": "Crete", "listingType": "rent", "maxItems": 200, "enrichListings": true }
```

**Power-user mode:** if you want a very specific filter (sale listings, custom price/area/room ranges, sub-neighborhood) — set your filters on [xe.gr/property](https://www.xe.gr/property), copy the results URL from your browser, paste it into `searchUrl`. This bypasses the structured inputs entirely.

```json
{
  "searchUrl": "https://www.xe.gr/property/results?...",
  "maxItems": 200
}
```

### Sale, rent, and commercial — all supported

Pick `listingType` (`rent` or `sale`) and `propertyCategory` (`residential`, `commercial`, `land`, `parking`). Mix and match — sale residential, rent commercial, sale land, etc. all work via structured input.

### Example output

```json
{
  "listingId": "bb4109ee-5232-41e7-b423-34e95a4bc360",
  "url": "https://www.xe.gr/property/d/enoikiaseis-katoikion/bb4109ee-5232-41e7-b423-34e95a4bc360/athhna-pagkrati-1100-70",
  "listingType": "rent",
  "propertyType": "Διαμέρισμα",
  "areaSqm": 70,
  "price": 1100,
  "pricePerSqm": 16,
  "currency": "EUR",
  "rooms": 2,
  "bathrooms": 1,
  "floor": "1ος",
  "yearBuilt": 1970,
  "city": "Αθήνα",
  "neighbourhood": "Παγκράτι",
  "rawAddress": "Αθήνα (Παγκράτι) | Ενοικίαση κατοικίας",
  "imageUrl": "https://blob.cdn.xe.gr/live/.../source.jpg?width=640&height=480&format=jpg",
  "scrapedAt": "2026-05-05T12:00:00.000Z"
}
```

### Common use cases

- **Investor monitoring** — track new listings in target neighborhoods, surface price drops, compare price/sqm trends.
- **Real-estate agencies** — pull competitor listings, monitor agent activity, build comparable-deal databases.
- **Market research** — snapshot rent vs sale supply by city, area, price band.
- **Price aggregators / portals** — feed your platform with up-to-date xe.gr inventory.

### Notes on data

- All prices are EUR. xe.gr is Greek-only, so `propertyType` and `rawAddress` are in Greek.
- `floor` is a string (Greek ordinals like `1ος`, `2ος` or `Ισόγειο` for ground floor) — not a number, because xe.gr's floor field has multiple non-numeric values.
- `yearBuilt` is filled when xe.gr exposes it (~88% of listings).
- `neighbourhood` is filled when the listing has one (~75% of listings).
- The actor uses Apify's residential proxy (Greece) to access xe.gr reliably.

### Pricing

Pay per result. See the Pricing tab for the current per-result price. You only pay for listings successfully scraped — failed pages cost nothing.

### Known limitations (v1)

- v1 takes a `searchUrl` only. v2 will add structured input (city dropdown + rent/sale + filters) for users who don't want to copy URLs from xe.gr.
- v1 does not enrich with detail-page data (full description, agent contact info, full amenities). v2 will add an optional `enrichListings` flag.

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

# Actor input Schema

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

Greek city, area, or neighborhood name (e.g. 'Athens', 'Thessaloniki', 'Mykonos', 'Crete', 'Glyfada'). The scraper resolves it via xe.gr's autocomplete. Required unless 'Search URL' is set.

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

Rent or sale.

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

Type of property

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

Maximum number of listings to return.

## `enrichListings` (type: `boolean`):

When enabled, fetches each listing's detail page to add: full description, complete street address with postal code, all images (often 20+), agent or owner name, renovation year, energy class, air conditioning, furnishing status, heating type, short-term-rental availability, and exact date posted. Costs an extra detail-page fetch per listing.

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

Optional. Power-user override and the only way to scrape sale listings until structured-input sale ships. Paste any xe.gr property results URL — set your filters on xe.gr (city, rent/sale, price, rooms, etc.), copy from the address bar.

## Actor input object example

```json
{
  "location": "Athens",
  "listingType": "rent",
  "propertyCategory": "residential",
  "maxItems": 100,
  "enrichListings": false
}
```

# 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 = {
    "location": "Athens"
};

// Run the Actor and wait for it to finish
const run = await client.actor("swerve/xe-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 = { "location": "Athens" }

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

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

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

```

## CLI example

```bash
echo '{
  "location": "Athens"
}' |
apify call swerve/xe-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=swerve/xe-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "xe.gr - Greek Real Estate",
        "description": "Scrape real estate listings from xe.gr, Greece's #1 classifieds site. Returns price, area, rooms, location, images, and floor for rent and sale listings. Paste any xe.gr search URL.",
        "version": "1.0",
        "x-build-id": "XufDbr73IZEWY693M"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/swerve~xe-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-swerve-xe-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/swerve~xe-scraper/runs": {
            "post": {
                "operationId": "runs-sync-swerve-xe-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/swerve~xe-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-swerve-xe-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "Greek city, area, or neighborhood name (e.g. 'Athens', 'Thessaloniki', 'Mykonos', 'Crete', 'Glyfada'). The scraper resolves it via xe.gr's autocomplete. Required unless 'Search URL' is set."
                    },
                    "listingType": {
                        "title": "Listing type",
                        "enum": [
                            "rent",
                            "sale"
                        ],
                        "type": "string",
                        "description": "Rent or sale.",
                        "default": "rent"
                    },
                    "propertyCategory": {
                        "title": "Property category",
                        "enum": [
                            "residential",
                            "commercial",
                            "land",
                            "parking"
                        ],
                        "type": "string",
                        "description": "Type of property",
                        "default": "residential"
                    },
                    "maxItems": {
                        "title": "Max listings",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of listings to return.",
                        "default": 100
                    },
                    "enrichListings": {
                        "title": "Enrich listings (full details)",
                        "type": "boolean",
                        "description": "When enabled, fetches each listing's detail page to add: full description, complete street address with postal code, all images (often 20+), agent or owner name, renovation year, energy class, air conditioning, furnishing status, heating type, short-term-rental availability, and exact date posted. Costs an extra detail-page fetch per listing.",
                        "default": false
                    },
                    "searchUrl": {
                        "title": "Search URL (advanced / sale fallback)",
                        "type": "string",
                        "description": "Optional. Power-user override and the only way to scrape sale listings until structured-input sale ships. Paste any xe.gr property results URL — set your filters on xe.gr (city, rent/sale, price, rooms, etc.), copy from the address bar."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
